1 Load packages

library(readr) # read text file

library(dplyr)
## Warning: package 'dplyr' was built under R version 4.0.5
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(tidytext)

2 Import text

2.1 readtext

# https://cran.r-project.org/web/packages/readtext/vignettes/readtext_vignette.html
library(readtext)
text_fp <- readtext(paste0("EOS365-FinalProject-TextAnalysis.txt"))
str(text_fp)
## Classes 'readtext' and 'data.frame': 1 obs. of  2 variables:
##  $ doc_id: chr "EOS365-FinalProject-TextAnalysis.txt"
##  $ text  : chr "Part I. Introduction and Background\n\nThis confidential report to cabinet can be used as a tool to support dis"| __truncated__
class(text_fp)
## [1] "readtext"   "data.frame"

2.2 Read file with readr into a single string

# https://stackoverflow.com/questions/9068397/import-text-file-as-single-character-string
mytext <- readr::read_file("EOS365-FinalProject-TextAnalysis.txt")
str(mytext)
##  chr "Part I. Introduction and Background\r\n\r\nThis confidential report to cabinet can be used as a tool to support"| __truncated__
class(mytext) # character
## [1] "character"

2.3 R Base readLines

# https://www.gastonsanchez.com/r4strings/chars.html
lines <- readLines("EOS365-FinalProject-TextAnalysis.txt")
length(lines)
## [1] 333
tail(lines)
## [1] ""                                                                                                                                                                                                                                                                             
## [2] "We know BC’s climate is changing and will continue to do so. We have an opportunity to ‘make a difference’, through creative and innovative actions through [recognizing opportunities]"                                                                                      
## [3] ""                                                                                                                                                                                                                                                                             
## [4] "The reason BC is taking these bold actions of climate change mitigation and adaptation is to honour Canada’s commitment to the Paris Agreement, based on the IPCC scientific reports."                                                                                        
## [5] ""                                                                                                                                                                                                                                                                             
## [6] "A continued, vibrant future can be ensured for British Columbians through education, skills training, and support for people, business, and industry, while protecting important environmental services, stewarding natural resources that help make this province unique. … "
head(lines)
## [1] "Part I. Introduction and Background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3] "This confidential report to cabinet can be used as a tool to support discussion, and includes background information, analysis, and recommendations for developing strategies to reduce carbon emissions and respond to changing climate. This introduction offers a brief geographic description of BC’s vastly different regions, where people live, which economically important industries contribute to carbon emissions, and political considerations.   "                                                                                        
## [4] "Reported by the Intergovernmental Panel on Climate Change (IPCC  ), accelerated action is required to lessen the impacts of human-related activities, which cause increased warming of Earth’s surface temperature due to greenhouse gas (GHG) emissions, especially carbon dioxide (CO2). As international cooperation is required to address global issues, Canada signed the Paris Climate Accord,  and created a national action plan to reduce emissions (NDC  ), including provincial obligations outlined by pathways in CleanBC Roadmap 2030.  "
## [5] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [6] "I. BC’s Geographic Regions:  Canada’s western-most province has a total area of 944,735 km2, or 95 million hectares, with 93% in Crown land and 75% in 10 mountain ranges. The western border is 25,725 km of rugged Pacific Ocean coastline, stretching east 700 km to Rocky Mountains and Alberta border, and 1300 km from northern boreal forests, south to USA.  "
str(lines)
##  chr [1:333] "Part I. Introduction and Background" "" ...
class(lines) # character
## [1] "character"

3 wordcloud

Many words won’t be plotted in the small chart area
“Warning: Warning in wordcloud(d\(word, d\)freq, min.freq = min.freq, max.words = max.words, : record could not be fit on page. It will not be plotted.”
- by changing the min.freq, progressive wordclouds can be created with only the most frequent words, adding less frequent words with each iteration

3.1 Wordcloud - 3 min frequency

# http://www.sthda.com/english/wiki/word-cloud-generator-in-r-one-killer-function-to-do-everything-you-need
source('http://www.sthda.com/upload/rquery_wordcloud.r')
wc <-rquery.wordcloud("EOS365-FinalProject-TextAnalysis.txt", 
                      type ="file", lang = "english", 
                      max.words = 10000, min.freq = 3,
                      colorPalette = "Set1")
## Loading required package: NLP
## Loading required package: RColorBrewer

wc
## $tdm
## <<TermDocumentMatrix (terms: 1282, documents: 333)>>
## Non-/sparse entries: 2969/423937
## Sparsity           : 99%
## Maximal term length: 120
## Weighting          : term frequency (tf)
## 
## $freqTable
##                                                                                                                                                                                                                                              word
## climate                                                                                                                                                                                                                                   climate
## emissions                                                                                                                                                                                                                               emissions
## bc’s                                                                                                                                                                                                                                         bc’s
## will                                                                                                                                                                                                                                         will
## change                                                                                                                                                                                                                                     change
## reduce                                                                                                                                                                                                                                     reduce
## carbon                                                                                                                                                                                                                                     carbon
## help                                                                                                                                                                                                                                         help
## regions                                                                                                                                                                                                                                   regions
## ghg                                                                                                                                                                                                                                           ghg
## action                                                                                                                                                                                                                                     action
## future                                                                                                                                                                                                                                     future
## indigenous                                                                                                                                                                                                                             indigenous
## challenges                                                                                                                                                                                                                             challenges
## weather                                                                                                                                                                                                                                   weather
## temperature                                                                                                                                                                                                                           temperature
## also                                                                                                                                                                                                                                         also
## industry                                                                                                                                                                                                                                 industry
## opportunity                                                                                                                                                                                                                           opportunity
## changing                                                                                                                                                                                                                                 changing
## social                                                                                                                                                                                                                                     social
## economic                                                                                                                                                                                                                                 economic
## building                                                                                                                                                                                                                                 building
## opportunities                                                                                                                                                                                                                       opportunities
## recommendations                                                                                                                                                                                                                   recommendations
## new                                                                                                                                                                                                                                           new
## mitigation                                                                                                                                                                                                                             mitigation
## gas                                                                                                                                                                                                                                           gas
## including                                                                                                                                                                                                                               including
## paris                                                                                                                                                                                                                                       paris
## provincial                                                                                                                                                                                                                             provincial
## canada’s                                                                                                                                                                                                                                 canada’s
## land                                                                                                                                                                                                                                         land
## development                                                                                                                                                                                                                           development
## energy                                                                                                                                                                                                                                     energy
## reducing                                                                                                                                                                                                                                 reducing
## words                                                                                                                                                                                                                                       words
## –                                                                                                                                                                                                                                               –
## can                                                                                                                                                                                                                                           can
## strategies                                                                                                                                                                                                                             strategies
## global                                                                                                                                                                                                                                     global
## increased                                                                                                                                                                                                                               increased
## agriculture                                                                                                                                                                                                                           agriculture
## natural                                                                                                                                                                                                                                   natural
## need                                                                                                                                                                                                                                         need
## skills                                                                                                                                                                                                                                     skills
## recommendation                                                                                                                                                                                                                     recommendation
## food                                                                                                                                                                                                                                         food
## supporting                                                                                                                                                                                                                             supporting
## changes                                                                                                                                                                                                                                   changes
## challenge                                                                                                                                                                                                                               challenge
## forests                                                                                                                                                                                                                                   forests
## communities                                                                                                                                                                                                                           communities
## adaptation                                                                                                                                                                                                                             adaptation
## clean                                                                                                                                                                                                                                       clean
## technology                                                                                                                                                                                                                             technology
## benefits                                                                                                                                                                                                                                 benefits
## provide                                                                                                                                                                                                                                   provide
## events                                                                                                                                                                                                                                     events
## different                                                                                                                                                                                                                               different
## people                                                                                                                                                                                                                                     people
## political                                                                                                                                                                                                                               political
## ipcc                                                                                                                                                                                                                                         ipcc
## growth                                                                                                                                                                                                                                     growth
## region                                                                                                                                                                                                                                     region
## interior                                                                                                                                                                                                                                 interior
## buildings                                                                                                                                                                                                                               buildings
## oil                                                                                                                                                                                                                                           oil
## transportation                                                                                                                                                                                                                     transportation
## protecting                                                                                                                                                                                                                             protecting
## training                                                                                                                                                                                                                                 training
## agreement                                                                                                                                                                                                                               agreement
## integrity                                                                                                                                                                                                                               integrity
## well                                                                                                                                                                                                                                         well
## section                                                                                                                                                                                                                                   section
## extreme                                                                                                                                                                                                                                   extreme
## air                                                                                                                                                                                                                                           air
## environmental                                                                                                                                                                                                                       environmental
## needs                                                                                                                                                                                                                                       needs
## support                                                                                                                                                                                                                                   support
## ocean                                                                                                                                                                                                                                       ocean
## biodiversity                                                                                                                                                                                                                         biodiversity
## include                                                                                                                                                                                                                                   include
## increasing                                                                                                                                                                                                                             increasing
## first                                                                                                                                                                                                                                       first
## urgent                                                                                                                                                                                                                                     urgent
## commitments                                                                                                                                                                                                                           commitments
## capacity                                                                                                                                                                                                                                 capacity
## security                                                                                                                                                                                                                                 security
## ecological                                                                                                                                                                                                                             ecological
## lowcarbon                                                                                                                                                                                                                               lowcarbon
## atmospheric                                                                                                                                                                                                                           atmospheric
## services                                                                                                                                                                                                                                 services
## analysis                                                                                                                                                                                                                                 analysis
## report                                                                                                                                                                                                                                     report
## cleanbc                                                                                                                                                                                                                                   cleanbc
## ndc                                                                                                                                                                                                                                           ndc
## mountains                                                                                                                                                                                                                               mountains
## regional                                                                                                                                                                                                                                 regional
## groups                                                                                                                                                                                                                                     groups
## north                                                                                                                                                                                                                                       north
## potential                                                                                                                                                                                                                               potential
## coastal                                                                                                                                                                                                                                   coastal
## adapt                                                                                                                                                                                                                                       adapt
## commitment                                                                                                                                                                                                                             commitment
## past                                                                                                                                                                                                                                         past
## since                                                                                                                                                                                                                                       since
## climates                                                                                                                                                                                                                                 climates
## find                                                                                                                                                                                                                                         find
## levels                                                                                                                                                                                                                                     levels
## °c                                                                                                                                                                                                                                             °c
## temperatures                                                                                                                                                                                                                         temperatures
## years                                                                                                                                                                                                                                       years
## ensuring                                                                                                                                                                                                                                 ensuring
## equity                                                                                                                                                                                                                                     equity
## precipitation                                                                                                                                                                                                                       precipitation
## summary                                                                                                                                                                                                                                   summary
## systems                                                                                                                                                                                                                                   systems
## century                                                                                                                                                                                                                                   century
## incorporate                                                                                                                                                                                                                           incorporate
## solutions                                                                                                                                                                                                                               solutions
## water                                                                                                                                                                                                                                       water
## ensure                                                                                                                                                                                                                                     ensure
## important                                                                                                                                                                                                                               important
## accord                                                                                                                                                                                                                                     accord
## address                                                                                                                                                                                                                                   address
## canada                                                                                                                                                                                                                                     canada
## impacts                                                                                                                                                                                                                                   impacts
## international                                                                                                                                                                                                                       international
## warming                                                                                                                                                                                                                                   warming
## pacific                                                                                                                                                                                                                                   pacific
## province                                                                                                                                                                                                                                 province
## south                                                                                                                                                                                                                                       south
## health                                                                                                                                                                                                                                     health
## population                                                                                                                                                                                                                             population
## result                                                                                                                                                                                                                                     result
## though                                                                                                                                                                                                                                     though
## within                                                                                                                                                                                                                                     within
## forestry                                                                                                                                                                                                                                 forestry
## key                                                                                                                                                                                                                                           key
## sectors                                                                                                                                                                                                                                   sectors
## actions                                                                                                                                                                                                                                   actions
## continue                                                                                                                                                                                                                                 continue
## local                                                                                                                                                                                                                                       local
## based                                                                                                                                                                                                                                       based
## flooding                                                                                                                                                                                                                                 flooding
## canadian                                                                                                                                                                                                                                 canadian
## goals                                                                                                                                                                                                                                       goals
## time                                                                                                                                                                                                                                         time
## jobs                                                                                                                                                                                                                                         jobs
## economy                                                                                                                                                                                                                                   economy
## forest                                                                                                                                                                                                                                     forest
## fulfill                                                                                                                                                                                                                                   fulfill
## reduction                                                                                                                                                                                                                               reduction
## innovative                                                                                                                                                                                                                             innovative
## mitigate                                                                                                                                                                                                                                 mitigate
## policy                                                                                                                                                                                                                                     policy
## trees                                                                                                                                                                                                                                       trees
## become                                                                                                                                                                                                                                     become
## work                                                                                                                                                                                                                                         work
## make                                                                                                                                                                                                                                         make
## communication                                                                                                                                                                                                                       communication
## copied                                                                                                                                                                                                                                     copied
## edited                                                                                                                                                                                                                                     edited
## managing                                                                                                                                                                                                                                 managing
## still                                                                                                                                                                                                                                       still
## part                                                                                                                                                                                                                                         part
## contribute                                                                                                                                                                                                                             contribute
## live                                                                                                                                                                                                                                         live
## respond                                                                                                                                                                                                                                   respond
## accelerated                                                                                                                                                                                                                           accelerated
## plan                                                                                                                                                                                                                                         plan
## area                                                                                                                                                                                                                                         area
## mountain                                                                                                                                                                                                                                 mountain
## northern                                                                                                                                                                                                                                 northern
## total                                                                                                                                                                                                                                       total
## creating                                                                                                                                                                                                                                 creating
## districts                                                                                                                                                                                                                               districts
## high                                                                                                                                                                                                                                         high
## use                                                                                                                                                                                                                                           use
## increase                                                                                                                                                                                                                                 increase
## less                                                                                                                                                                                                                                         less
## may                                                                                                                                                                                                                                           may
## projected                                                                                                                                                                                                                               projected
## workers                                                                                                                                                                                                                                   workers
## central                                                                                                                                                                                                                                   central
## experienced                                                                                                                                                                                                                           experienced
## coast                                                                                                                                                                                                                                       coast
## gdp                                                                                                                                                                                                                                           gdp
## government                                                                                                                                                                                                                             government
## recent                                                                                                                                                                                                                                     recent
## financial                                                                                                                                                                                                                               financial
## recovery                                                                                                                                                                                                                                 recovery
## wildfire                                                                                                                                                                                                                                 wildfire
## balance                                                                                                                                                                                                                                   balance
## healthy                                                                                                                                                                                                                                   healthy
## rise                                                                                                                                                                                                                                         rise
## effects                                                                                                                                                                                                                                   effects
## knowledge                                                                                                                                                                                                                               knowledge
## resilience                                                                                                                                                                                                                             resilience
## traditional                                                                                                                                                                                                                           traditional
## competitive                                                                                                                                                                                                                           competitive
## emission                                                                                                                                                                                                                                 emission
## encourage                                                                                                                                                                                                                               encourage
## fuel                                                                                                                                                                                                                                         fuel
## tax                                                                                                                                                                                                                                           tax
## costs                                                                                                                                                                                                                                       costs
## sector                                                                                                                                                                                                                                     sector
## workforce                                                                                                                                                                                                                               workforce
## becoming                                                                                                                                                                                                                                 becoming
## patterns                                                                                                                                                                                                                                 patterns
## period                                                                                                                                                                                                                                     period
## summer                                                                                                                                                                                                                                     summer
## winter                                                                                                                                                                                                                                     winter
## cold                                                                                                                                                                                                                                         cold
## warm                                                                                                                                                                                                                                         warm
## wetter                                                                                                                                                                                                                                     wetter
## fires                                                                                                                                                                                                                                       fires
## observed                                                                                                                                                                                                                                 observed
## look                                                                                                                                                                                                                                         look
## lecture                                                                                                                                                                                                                                   lecture
##                                                                                                                                                                                                                                                
## methane                                                                                                                                                                                                                                   methane
## offer                                                                                                                                                                                                                                       offer
## build                                                                                                                                                                                                                                       build
## rebuilding                                                                                                                                                                                                                             rebuilding
## way                                                                                                                                                                                                                                           way
## intro                                                                                                                                                                                                                                       intro
## background                                                                                                                                                                                                                             background
## developing                                                                                                                                                                                                                             developing
## geographic                                                                                                                                                                                                                             geographic
## includes                                                                                                                                                                                                                                 includes
## industries                                                                                                                                                                                                                             industries
## information                                                                                                                                                                                                                           information
## used                                                                                                                                                                                                                                         used
## created                                                                                                                                                                                                                                   created
## dioxide                                                                                                                                                                                                                                   dioxide
## earth’s                                                                                                                                                                                                                                   earth’s
## issues                                                                                                                                                                                                                                     issues
## obligations                                                                                                                                                                                                                           obligations
## roadmap                                                                                                                                                                                                                                   roadmap
## crown                                                                                                                                                                                                                                       crown
## east                                                                                                                                                                                                                                         east
## hectares                                                                                                                                                                                                                                 hectares
## million                                                                                                                                                                                                                                   million
## ranges                                                                                                                                                                                                                                     ranges
## western                                                                                                                                                                                                                                   western
## biogeoclimatic                                                                                                                                                                                                                     biogeoclimatic
## manage                                                                                                                                                                                                                                     manage
## vegetation                                                                                                                                                                                                                             vegetation
## demographics                                                                                                                                                                                                                         demographics
## areas                                                                                                                                                                                                                                       areas
## territories                                                                                                                                                                                                                           territories
## dry                                                                                                                                                                                                                                           dry
## geography                                                                                                                                                                                                                               geography
## construction                                                                                                                                                                                                                         construction
## logging                                                                                                                                                                                                                                   logging
## prior                                                                                                                                                                                                                                       prior
## rights                                                                                                                                                                                                                                     rights
## cpas                                                                                                                                                                                                                                         cpas
## following                                                                                                                                                                                                                               following
## infrastructure                                                                                                                                                                                                                     infrastructure
## nations                                                                                                                                                                                                                                   nations
## next                                                                                                                                                                                                                                         next
## plans                                                                                                                                                                                                                                       plans
## policies                                                                                                                                                                                                                                 policies
## targets                                                                                                                                                                                                                                   targets
## affordable                                                                                                                                                                                                                             affordable
## innovation                                                                                                                                                                                                                             innovation
## keep                                                                                                                                                                                                                                         keep
## limit                                                                                                                                                                                                                                       limit
## made                                                                                                                                                                                                                                         made
## preindustrial                                                                                                                                                                                                                       preindustrial
## production                                                                                                                                                                                                                             production
## sustainable                                                                                                                                                                                                                           sustainable
## every                                                                                                                                                                                                                                       every
## reduced                                                                                                                                                                                                                                   reduced
## education                                                                                                                                                                                                                               education
## encouraging                                                                                                                                                                                                                           encouraging
## equitable                                                                                                                                                                                                                               equitable
## experience                                                                                                                                                                                                                             experience
## incorporating                                                                                                                                                                                                                       incorporating
## learning                                                                                                                                                                                                                                 learning
## taken                                                                                                                                                                                                                                       taken
## creation                                                                                                                                                                                                                                 creation
## goal                                                                                                                                                                                                                                         goal
## homes                                                                                                                                                                                                                                       homes
## increasingly                                                                                                                                                                                                                         increasingly
## per                                                                                                                                                                                                                                           per
## pollution                                                                                                                                                                                                                               pollution
## beyond                                                                                                                                                                                                                                     beyond
## community                                                                                                                                                                                                                               community
## create                                                                                                                                                                                                                                     create
## ecosystem                                                                                                                                                                                                                               ecosystem
## helping                                                                                                                                                                                                                                   helping
## strategy                                                                                                                                                                                                                                 strategy
## technologies                                                                                                                                                                                                                         technologies
## fund                                                                                                                                                                                                                                         fund
## projects                                                                                                                                                                                                                                 projects
## research                                                                                                                                                                                                                                 research
## incentives                                                                                                                                                                                                                             incentives
## large                                                                                                                                                                                                                                       large
## heat                                                                                                                                                                                                                                         heat
## continues                                                                                                                                                                                                                               continues
## present                                                                                                                                                                                                                                   present
## variations                                                                                                                                                                                                                             variations
## averages                                                                                                                                                                                                                                 averages
## duration                                                                                                                                                                                                                                 duration
## wind                                                                                                                                                                                                                                         wind
## associated                                                                                                                                                                                                                             associated
## atmosphere                                                                                                                                                                                                                             atmosphere
## circulation                                                                                                                                                                                                                           circulation
## flow                                                                                                                                                                                                                                         flow
## good                                                                                                                                                                                                                                         good
## long                                                                                                                                                                                                                                         long
## season                                                                                                                                                                                                                                     season
## agricultural                                                                                                                                                                                                                         agricultural
## drought                                                                                                                                                                                                                                   drought
## emergency                                                                                                                                                                                                                               emergency
## november                                                                                                                                                                                                                                 november
## resulting                                                                                                                                                                                                                               resulting
## locations                                                                                                                                                                                                                               locations
## record                                                                                                                                                                                                                                     record
## recorded                                                                                                                                                                                                                                 recorded
## average                                                                                                                                                                                                                                   average
## current                                                                                                                                                                                                                                   current
## environment                                                                                                                                                                                                                           environment
## trends                                                                                                                                                                                                                                     trends
## summarize                                                                                                                                                                                                                               summarize
## check                                                                                                                                                                                                                                       check
## oscillation                                                                                                                                                                                                                           oscillation
## effect                                                                                                                                                                                                                                     effect
## ability                                                                                                                                                                                                                                   ability
## species                                                                                                                                                                                                                                   species
## landuse                                                                                                                                                                                                                                   landuse
## already                                                                                                                                                                                                                                   already
## developed                                                                                                                                                                                                                               developed
## creative                                                                                                                                                                                                                                 creative
## affect                                                                                                                                                                                                                                     affect
## nature’s                                                                                                                                                                                                                                 nature’s
## addressing                                                                                                                                                                                                                             addressing
## growing                                                                                                                                                                                                                                   growing
## transition                                                                                                                                                                                                                             transition
## instead                                                                                                                                                                                                                                   instead
## ways                                                                                                                                                                                                                                         ways
## codes                                                                                                                                                                                                                                       codes
## quality                                                                                                                                                                                                                                   quality
## plant                                                                                                                                                                                                                                       plant
## led                                                                                                                                                                                                                                           led
## introduction                                                                                                                                                                                                                         introduction
## brief                                                                                                                                                                                                                                       brief
## description                                                                                                                                                                                                                           description
## economically                                                                                                                                                                                                                         economically
## offers                                                                                                                                                                                                                                     offers
## due                                                                                                                                                                                                                                           due
## especially                                                                                                                                                                                                                             especially
## intergovernmental                                                                                                                                                                                                               intergovernmental
## panel                                                                                                                                                                                                                                       panel
## pathways                                                                                                                                                                                                                                 pathways
## required                                                                                                                                                                                                                                 required
## border                                                                                                                                                                                                                                     border
## rocky                                                                                                                                                                                                                                       rocky
## authorities                                                                                                                                                                                                                           authorities
## census                                                                                                                                                                                                                                     census
## ecosystems                                                                                                                                                                                                                             ecosystems
## geopolitical                                                                                                                                                                                                                         geopolitical
## macroclimate                                                                                                                                                                                                                         macroclimate
## municipalities                                                                                                                                                                                                                     municipalities
## school                                                                                                                                                                                                                                     school
## subdivisions                                                                                                                                                                                                                         subdivisions
## zones                                                                                                                                                                                                                                       zones
## ages                                                                                                                                                                                                                                         ages
## depending                                                                                                                                                                                                                               depending
## fewer                                                                                                                                                                                                                                       fewer
## migration                                                                                                                                                                                                                               migration
## senior                                                                                                                                                                                                                                     senior
## cities                                                                                                                                                                                                                                     cities
## mostly                                                                                                                                                                                                                                     mostly
## nation                                                                                                                                                                                                                                     nation
## rural                                                                                                                                                                                                                                       rural
## towns                                                                                                                                                                                                                                       towns
## villages                                                                                                                                                                                                                                 villages
## cariboo                                                                                                                                                                                                                                   cariboo
## mining                                                                                                                                                                                                                                     mining
## plateau                                                                                                                                                                                                                                   plateau
## private                                                                                                                                                                                                                                   private
## remote                                                                                                                                                                                                                                     remote
## specific                                                                                                                                                                                                                                 specific
## tourism                                                                                                                                                                                                                                   tourism
## contributes                                                                                                                                                                                                                           contributes
## consent                                                                                                                                                                                                                                   consent
## examples                                                                                                                                                                                                                                 examples
## forward                                                                                                                                                                                                                                   forward
## free                                                                                                                                                                                                                                         free
## informed                                                                                                                                                                                                                                 informed
## much                                                                                                                                                                                                                                         much
## oldgrowth                                                                                                                                                                                                                               oldgrowth
## subsidies                                                                                                                                                                                                                               subsidies
## territory                                                                                                                                                                                                                               territory
## unceded                                                                                                                                                                                                                                   unceded
## accomplishments                                                                                                                                                                                                                   accomplishments
## agreements                                                                                                                                                                                                                             agreements
## backdrop                                                                                                                                                                                                                                 backdrop
## budget                                                                                                                                                                                                                                     budget
## election                                                                                                                                                                                                                                 election
## federal                                                                                                                                                                                                                                   federal
## liberal                                                                                                                                                                                                                                   liberal
## majority                                                                                                                                                                                                                                 majority
## making                                                                                                                                                                                                                                     making
## management                                                                                                                                                                                                                             management
## minority                                                                                                                                                                                                                                 minority
## responsibilities                                                                                                                                                                                                                 responsibilities
## reviewing                                                                                                                                                                                                                               reviewing
## speech                                                                                                                                                                                                                                     speech
## throne                                                                                                                                                                                                                                     throne
## equality                                                                                                                                                                                                                                 equality
## netzero                                                                                                                                                                                                                                   netzero
## ppm                                                                                                                                                                                                                                           ppm
## states                                                                                                                                                                                                                                     states
## contributions                                                                                                                                                                                                                       contributions
## c°                                                                                                                                                                                                                                             c°
## determined                                                                                                                                                                                                                             determined
## nationally                                                                                                                                                                                                                             nationally
## rising                                                                                                                                                                                                                                     rising
## ambitious                                                                                                                                                                                                                               ambitious
## balancing                                                                                                                                                                                                                               balancing
## considering                                                                                                                                                                                                                           considering
## effective                                                                                                                                                                                                                               effective
## monitoring                                                                                                                                                                                                                             monitoring
## participation                                                                                                                                                                                                                       participation
## public                                                                                                                                                                                                                                     public
## rapidly                                                                                                                                                                                                                                   rapidly
## risks                                                                                                                                                                                                                                       risks
## scientific                                                                                                                                                                                                                             scientific
## technological                                                                                                                                                                                                                       technological
## vulnerable                                                                                                                                                                                                                             vulnerable
## adapting                                                                                                                                                                                                                                 adapting
## advantage                                                                                                                                                                                                                               advantage
## job                                                                                                                                                                                                                                           job
## pricing                                                                                                                                                                                                                                   pricing
## waste                                                                                                                                                                                                                                       waste
## economics                                                                                                                                                                                                                               economics
## low                                                                                                                                                                                                                                           low
## negative                                                                                                                                                                                                                                 negative
## partnerships                                                                                                                                                                                                                         partnerships
## consumer                                                                                                                                                                                                                                 consumer
## fossil                                                                                                                                                                                                                                     fossil
## introduced                                                                                                                                                                                                                             introduced
## lower                                                                                                                                                                                                                                       lower
## revenue                                                                                                                                                                                                                                   revenue
## efficient                                                                                                                                                                                                                               efficient
## electric                                                                                                                                                                                                                                 electric
## existing                                                                                                                                                                                                                                 existing
## old                                                                                                                                                                                                                                           old
## retrofitting                                                                                                                                                                                                                         retrofitting
## direct                                                                                                                                                                                                                                     direct
## obvious                                                                                                                                                                                                                                   obvious
## quest                                                                                                                                                                                                                                       quest
## take                                                                                                                                                                                                                                         take
## towards                                                                                                                                                                                                                                   towards
## factors                                                                                                                                                                                                                                   factors
## many                                                                                                                                                                                                                                         many
## clouds                                                                                                                                                                                                                                     clouds
## conditions                                                                                                                                                                                                                             conditions
## daily                                                                                                                                                                                                                                       daily
## direction                                                                                                                                                                                                                               direction
## extremes                                                                                                                                                                                                                                 extremes
## intensity                                                                                                                                                                                                                               intensity
## like                                                                                                                                                                                                                                         like
## normal                                                                                                                                                                                                                                     normal
## place                                                                                                                                                                                                                                       place
## pressure                                                                                                                                                                                                                                 pressure
## cycle                                                                                                                                                                                                                                       cycle
## highpressure                                                                                                                                                                                                                         highpressure
## influence                                                                                                                                                                                                                               influence
## influenced                                                                                                                                                                                                                             influenced
## largescale                                                                                                                                                                                                                             largescale
## maritime                                                                                                                                                                                                                                 maritime
## niño                                                                                                                                                                                                                                         niño
## small                                                                                                                                                                                                                                       small
## continental                                                                                                                                                                                                                           continental
## latitude                                                                                                                                                                                                                                 latitude
## moderate                                                                                                                                                                                                                                 moderate
## plains                                                                                                                                                                                                                                     plains
## plateaus                                                                                                                                                                                                                                 plateaus
## southern                                                                                                                                                                                                                                 southern
## varies                                                                                                                                                                                                                                     varies
## activity                                                                                                                                                                                                                                 activity
## arctic                                                                                                                                                                                                                                     arctic
## early                                                                                                                                                                                                                                       early
## largest                                                                                                                                                                                                                                   largest
## snow                                                                                                                                                                                                                                         snow
## burning                                                                                                                                                                                                                                   burning
## day                                                                                                                                                                                                                                           day
## fertile                                                                                                                                                                                                                                   fertile
## fire                                                                                                                                                                                                                                         fire
## frequency                                                                                                                                                                                                                               frequency
## human                                                                                                                                                                                                                                       human
## impact                                                                                                                                                                                                                                     impact
## one                                                                                                                                                                                                                                           one
## prairie                                                                                                                                                                                                                                   prairie
## rain                                                                                                                                                                                                                                         rain
## river                                                                                                                                                                                                                                       river
## state                                                                                                                                                                                                                                       state
## sumas                                                                                                                                                                                                                                       sumas
## values                                                                                                                                                                                                                                     values
## december                                                                                                                                                                                                                                 december
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf
## variability                                                                                                                                                                                                                           variability
## drier                                                                                                                                                                                                                                       drier
## last                                                                                                                                                                                                                                         last
## systemic                                                                                                                                                                                                                                 systemic
## maps                                                                                                                                                                                                                                         maps
## material                                                                                                                                                                                                                                 material
## expectations                                                                                                                                                                                                                         expectations
## module                                                                                                                                                                                                                                     module
## notes                                                                                                                                                                                                                                       notes
## slide                                                                                                                                                                                                                                       slide
## longterm                                                                                                                                                                                                                                 longterm
## oceans                                                                                                                                                                                                                                     oceans
## stabilize                                                                                                                                                                                                                               stabilize
## acidic                                                                                                                                                                                                                                     acidic
## habitat                                                                                                                                                                                                                                   habitat
## adaptive                                                                                                                                                                                                                                 adaptive
## vulnerabilities                                                                                                                                                                                                                   vulnerabilities
## pages                                                                                                                                                                                                                                       pages
## necessary                                                                                                                                                                                                                               necessary
## themes                                                                                                                                                                                                                                     themes
## wetlands                                                                                                                                                                                                                                 wetlands
## across                                                                                                                                                                                                                                     across
## often                                                                                                                                                                                                                                       often
## populations                                                                                                                                                                                                                           populations
## representative                                                                                                                                                                                                                     representative
## ministry                                                                                                                                                                                                                                 ministry
## reconciliation                                                                                                                                                                                                                     reconciliation
## sources                                                                                                                                                                                                                                   sources
## youth                                                                                                                                                                                                                                       youth
## cleanenergy                                                                                                                                                                                                                           cleanenergy
## employment                                                                                                                                                                                                                             employment
## force                                                                                                                                                                                                                                       force
## remove                                                                                                                                                                                                                                     remove
## resource                                                                                                                                                                                                                                 resource
## soil                                                                                                                                                                                                                                         soil
## storage                                                                                                                                                                                                                                   storage
## store                                                                                                                                                                                                                                       store
## timber                                                                                                                                                                                                                                     timber
## farms                                                                                                                                                                                                                                       farms
## flooded                                                                                                                                                                                                                                   flooded
## fraser                                                                                                                                                                                                                                     fraser
## legislation                                                                                                                                                                                                                           legislation
## manure                                                                                                                                                                                                                                     manure
## valley                                                                                                                                                                                                                                     valley
## flood                                                                                                                                                                                                                                       flood
## preserve                                                                                                                                                                                                                                 preserve
## resources                                                                                                                                                                                                                               resources
## bold                                                                                                                                                                                                                                         bold
## exists                                                                                                                                                                                                                                     exists
## invest                                                                                                                                                                                                                                     invest
## competing                                                                                                                                                                                                                               competing
## advice                                                                                                                                                                                                                                     advice
## meet                                                                                                                                                                                                                                         meet
## track                                                                                                                                                                                                                                       track
## causing                                                                                                                                                                                                                                   causing
## damage                                                                                                                                                                                                                                     damage
## protests                                                                                                                                                                                                                                 protests
## affordability                                                                                                                                                                                                                       affordability
## consider                                                                                                                                                                                                                                 consider
## council                                                                                                                                                                                                                                   council
## chiefs                                                                                                                                                                                                                                     chiefs
## continued                                                                                                                                                                                                                               continued
## ongoing                                                                                                                                                                                                                                   ongoing
## without                                                                                                                                                                                                                                   without
## rebuild                                                                                                                                                                                                                                   rebuild
## using                                                                                                                                                                                                                                       using
## list                                                                                                                                                                                                                                         list
## foster                                                                                                                                                                                                                                     foster
## …                                                                                                                                                                                                                                               …
## needed                                                                                                                                                                                                                                     needed
## conclusion                                                                                                                                                                                                                             conclusion
## cabinet                                                                                                                                                                                                                                   cabinet
## confidential                                                                                                                                                                                                                         confidential
## considerations                                                                                                                                                                                                                     considerations
## discussion                                                                                                                                                                                                                             discussion
## tool                                                                                                                                                                                                                                         tool
## vastly                                                                                                                                                                                                                                     vastly
## activities                                                                                                                                                                                                                             activities
## cause                                                                                                                                                                                                                                       cause
## cooperation                                                                                                                                                                                                                           cooperation
## greenhouse                                                                                                                                                                                                                             greenhouse
## humanrelated                                                                                                                                                                                                                         humanrelated
## lessen                                                                                                                                                                                                                                     lessen
## national                                                                                                                                                                                                                                 national
## outlined                                                                                                                                                                                                                                 outlined
## reported                                                                                                                                                                                                                                 reported
## signed                                                                                                                                                                                                                                     signed
## surface                                                                                                                                                                                                                                   surface
## alberta                                                                                                                                                                                                                                   alberta
## boreal                                                                                                                                                                                                                                     boreal
## coastline                                                                                                                                                                                                                               coastline
## rugged                                                                                                                                                                                                                                     rugged
## stretching                                                                                                                                                                                                                             stretching
## usa                                                                                                                                                                                                                                           usa
## categories                                                                                                                                                                                                                             categories
## distinct                                                                                                                                                                                                                                 distinct
## divided                                                                                                                                                                                                                                   divided
## divisions                                                                                                                                                                                                                               divisions
## numerous                                                                                                                                                                                                                                 numerous
## phsyiographic                                                                                                                                                                                                                       phsyiographic
## plus                                                                                                                                                                                                                                         plus
## similar                                                                                                                                                                                                                                   similar
## subareas                                                                                                                                                                                                                                 subareas
## useful                                                                                                                                                                                                                                     useful
## variety                                                                                                                                                                                                                                   variety
## aging                                                                                                                                                                                                                                       aging
## births                                                                                                                                                                                                                                     births
## deaths                                                                                                                                                                                                                                     deaths
## decrease                                                                                                                                                                                                                                 decrease
## interprovincial                                                                                                                                                                                                                   interprovincial
## now                                                                                                                                                                                                                                           now
## passed                                                                                                                                                                                                                                     passed
## populace                                                                                                                                                                                                                                 populace
## retire                                                                                                                                                                                                                                     retire
## shows                                                                                                                                                                                                                                       shows
## slightly                                                                                                                                                                                                                                 slightly
## stats                                                                                                                                                                                                                                       stats
## working                                                                                                                                                                                                                                   working
## age                                                                                                                                                                                                                                           age
## comprise                                                                                                                                                                                                                                 comprise
## least                                                                                                                                                                                                                                       least
## okanagan                                                                                                                                                                                                                                 okanagan
## reserves                                                                                                                                                                                                                                 reserves
## urban                                                                                                                                                                                                                                       urban
## younger                                                                                                                                                                                                                                   younger
## cover                                                                                                                                                                                                                                       cover
## culture                                                                                                                                                                                                                                   culture
## drivers                                                                                                                                                                                                                                   drivers
## iii                                                                                                                                                                                                                                           iii
## island                                                                                                                                                                                                                                     island
## kootenay                                                                                                                                                                                                                                 kootenay
## mainland                                                                                                                                                                                                                                 mainland
## nechako                                                                                                                                                                                                                                   nechako
## northeast                                                                                                                                                                                                                               northeast
## occur                                                                                                                                                                                                                                       occur
## occurs                                                                                                                                                                                                                                     occurs
## pipelines                                                                                                                                                                                                                               pipelines
## southwest                                                                                                                                                                                                                               southwest
## thompsonokanagan                                                                                                                                                                                                                 thompsonokanagan
## utilities                                                                                                                                                                                                                               utilities
## vancouver                                                                                                                                                                                                                               vancouver
## decreasing                                                                                                                                                                                                                             decreasing
## domestic                                                                                                                                                                                                                                 domestic
## emitting                                                                                                                                                                                                                                 emitting
## gross                                                                                                                                                                                                                                       gross
## hydro                                                                                                                                                                                                                                       hydro
## manufacturing                                                                                                                                                                                                                       manufacturing
## megatons                                                                                                                                                                                                                                 megatons
## product                                                                                                                                                                                                                                   product
## service                                                                                                                                                                                                                                   service
## acceptance                                                                                                                                                                                                                             acceptance
## access                                                                                                                                                                                                                                     access
## authority                                                                                                                                                                                                                               authority
## citizens                                                                                                                                                                                                                                 citizens
## creek                                                                                                                                                                                                                                       creek
## decisionmaking                                                                                                                                                                                                                     decisionmaking
## exercise                                                                                                                                                                                                                                 exercise
## expected                                                                                                                                                                                                                                 expected
## fairy                                                                                                                                                                                                                                       fairy
## gaslink                                                                                                                                                                                                                                   gaslink
## going                                                                                                                                                                                                                                       going
## landscape                                                                                                                                                                                                                               landscape
## pipeline                                                                                                                                                                                                                                 pipeline
## protest                                                                                                                                                                                                                                   protest
## protocol                                                                                                                                                                                                                                 protocol
## right                                                                                                                                                                                                                                       right
## undrip                                                                                                                                                                                                                                     undrip
## wet’suwet’en                                                                                                                                                                                                                         wet’suwet’en
## collaborating                                                                                                                                                                                                                       collaborating
## crisis”                                                                                                                                                                                                                                   crisis”
## focusing                                                                                                                                                                                                                                 focusing
## followed                                                                                                                                                                                                                                 followed
## formed                                                                                                                                                                                                                                     formed
## furthering                                                                                                                                                                                                                             furthering
## highlighted                                                                                                                                                                                                                           highlighted
## investing                                                                                                                                                                                                                               investing
## money                                                                                                                                                                                                                                       money
## ndp                                                                                                                                                                                                                                           ndp
## prepare                                                                                                                                                                                                                                   prepare
## prevention                                                                                                                                                                                                                             prevention
## resilient                                                                                                                                                                                                                               resilient
## set                                                                                                                                                                                                                                           set
## setting                                                                                                                                                                                                                                   setting
## wildfires                                                                                                                                                                                                                               wildfires
## “climate                                                                                                                                                                                                                                 “climate
## affecting                                                                                                                                                                                                                               affecting
## affirms                                                                                                                                                                                                                                   affirms
## assessment                                                                                                                                                                                                                             assessment
## call                                                                                                                                                                                                                                         call
## consumption                                                                                                                                                                                                                           consumption
## currently                                                                                                                                                                                                                               currently
## drives                                                                                                                                                                                                                                     drives
## exceed                                                                                                                                                                                                                                     exceed
## experts                                                                                                                                                                                                                                   experts
## fall                                                                                                                                                                                                                                         fall
## life                                                                                                                                                                                                                                         life
## likely                                                                                                                                                                                                                                     likely
## newest                                                                                                                                                                                                                                     newest
## reductions”                                                                                                                                                                                                                           reductions”
## responsible                                                                                                                                                                                                                           responsible
## special                                                                                                                                                                                                                                   special
## sustainability                                                                                                                                                                                                                     sustainability
## understanding                                                                                                                                                                                                                       understanding
## unless                                                                                                                                                                                                                                     unless
## update                                                                                                                                                                                                                                     update
## written                                                                                                                                                                                                                                   written
## “deep                                                                                                                                                                                                                                       “deep
## agreed                                                                                                                                                                                                                                     agreed
## binding                                                                                                                                                                                                                                   binding
## detailed                                                                                                                                                                                                                                 detailed
## legally                                                                                                                                                                                                                                   legally
## motivated                                                                                                                                                                                                                               motivated
## preferably                                                                                                                                                                                                                             preferably
## ratified                                                                                                                                                                                                                                 ratified
## sovereign                                                                                                                                                                                                                               sovereign
## submit                                                                                                                                                                                                                                     submit
## treaty                                                                                                                                                                                                                                     treaty
## available                                                                                                                                                                                                                               available
## aware                                                                                                                                                                                                                                       aware
## best                                                                                                                                                                                                                                         best
## diversifying                                                                                                                                                                                                                         diversifying
## economies                                                                                                                                                                                                                               economies
## efforts                                                                                                                                                                                                                                   efforts
## enacting                                                                                                                                                                                                                                 enacting
## evaluating                                                                                                                                                                                                                             evaluating
## financing                                                                                                                                                                                                                               financing
## guided                                                                                                                                                                                                                                     guided
## knowledge“                                                                                                                                                                                                                             knowledge“
## mobilizing                                                                                                                                                                                                                             mobilizing
## planning                                                                                                                                                                                                                                 planning
## programs                                                                                                                                                                                                                                 programs
## responses                                                                                                                                                                                                                               responses
## transparent                                                                                                                                                                                                                           transparent
## unfcc                                                                                                                                                                                                                                       unfcc
## vision“                                                                                                                                                                                                                                   vision“
## “                                                                                                                                                                                                                                               “
## “longterm                                                                                                                                                                                                                               “longterm
## cutting                                                                                                                                                                                                                                   cutting
## enhanced                                                                                                                                                                                                                                 enhanced
## families                                                                                                                                                                                                                                 families
## habitats                                                                                                                                                                                                                                 habitats
## household                                                                                                                                                                                                                               household
## innovating                                                                                                                                                                                                                             innovating
## original                                                                                                                                                                                                                                 original
## outlining                                                                                                                                                                                                                               outlining
## rebates                                                                                                                                                                                                                                   rebates
## respecting                                                                                                                                                                                                                             respecting
## submitted                                                                                                                                                                                                                               submitted
## bioeconomy                                                                                                                                                                                                                             bioeconomy
## climatechange                                                                                                                                                                                                                       climatechange
## collecting                                                                                                                                                                                                                             collecting
## cultivated                                                                                                                                                                                                                             cultivated
## data                                                                                                                                                                                                                                         data
## extend                                                                                                                                                                                                                                     extend
## fisheries                                                                                                                                                                                                                               fisheries
## globally                                                                                                                                                                                                                                 globally
## map                                                                                                                                                                                                                                           map
## preparedness                                                                                                                                                                                                                         preparedness
## purposes                                                                                                                                                                                                                                 purposes
## ready                                                                                                                                                                                                                                       ready
## released                                                                                                                                                                                                                                 released
## road                                                                                                                                                                                                                                         road
## targeted                                                                                                                                                                                                                                 targeted
## accelerator                                                                                                                                                                                                                           accelerator
## allow                                                                                                                                                                                                                                       allow
## capped                                                                                                                                                                                                                                     capped
## cumulatively                                                                                                                                                                                                                         cumulatively
## offered                                                                                                                                                                                                                                   offered
## proposals                                                                                                                                                                                                                               proposals
## reviewed                                                                                                                                                                                                                                 reviewed
## america                                                                                                                                                                                                                                   america
## applied                                                                                                                                                                                                                                   applied
## canadians                                                                                                                                                                                                                               canadians
## credit                                                                                                                                                                                                                                     credit
## fueltype                                                                                                                                                                                                                                 fueltype
## kind                                                                                                                                                                                                                                         kind
## metric                                                                                                                                                                                                                                     metric
## middleincome                                                                                                                                                                                                                         middleincome
## purchase                                                                                                                                                                                                                                 purchase
## rebated                                                                                                                                                                                                                                   rebated
## solution                                                                                                                                                                                                                                 solution
## starting                                                                                                                                                                                                                                 starting
## taxes                                                                                                                                                                                                                                       taxes
## ton                                                                                                                                                                                                                                           ton
## charging                                                                                                                                                                                                                                 charging
## deferring                                                                                                                                                                                                                               deferring
## electrifying                                                                                                                                                                                                                         electrifying
## expanding                                                                                                                                                                                                                               expanding
## installations                                                                                                                                                                                                                       installations
## passenger                                                                                                                                                                                                                               passenger
## previously                                                                                                                                                                                                                             previously
## promises                                                                                                                                                                                                                                 promises
## promoting                                                                                                                                                                                                                               promoting
## pump                                                                                                                                                                                                                                         pump
## subsidizing                                                                                                                                                                                                                           subsidizing
## vehicles                                                                                                                                                                                                                                 vehicles
## world                                                                                                                                                                                                                                       world
## zeroemission                                                                                                                                                                                                                         zeroemission
## competitively                                                                                                                                                                                                                       competitively
## final                                                                                                                                                                                                                                       final
## leader                                                                                                                                                                                                                                     leader
## move                                                                                                                                                                                                                                         move
## sections                                                                                                                                                                                                                                 sections
## rest                                                                                                                                                                                                                                         rest
## “inform                                                                                                                                                                                                                                   “inform
## ”                                                                                                                                                                                                                                               ”
## analyzing                                                                                                                                                                                                                               analyzing
## impacted                                                                                                                                                                                                                                 impacted
## inform                                                                                                                                                                                                                                     inform
## understand                                                                                                                                                                                                                             understand
## barometric                                                                                                                                                                                                                             barometric
## common                                                                                                                                                                                                                                     common
## difference                                                                                                                                                                                                                             difference
## distinguishing                                                                                                                                                                                                                     distinguishing
## hourly                                                                                                                                                                                                                                     hourly
## influences                                                                                                                                                                                                                             influences
## recognize                                                                                                                                                                                                                               recognize
## seasonally                                                                                                                                                                                                                             seasonally
## speed                                                                                                                                                                                                                                       speed
## start                                                                                                                                                                                                                                       start
## statistical                                                                                                                                                                                                                           statistical
## variabilities                                                                                                                                                                                                                       variabilities
## vary                                                                                                                                                                                                                                         vary
## alternating                                                                                                                                                                                                                           alternating
## canada‘s                                                                                                                                                                                                                                 canada‘s
## climatic                                                                                                                                                                                                                                 climatic
## frostfree                                                                                                                                                                                                                               frostfree
## lots                                                                                                                                                                                                                                         lots
## lowpressure                                                                                                                                                                                                                           lowpressure
## moderating                                                                                                                                                                                                                             moderating
## multiyear                                                                                                                                                                                                                               multiyear
## periods                                                                                                                                                                                                                                   periods
## prevailing                                                                                                                                                                                                                             prevailing
## rainfall                                                                                                                                                                                                                                 rainfall
## seasonal                                                                                                                                                                                                                                 seasonal
## warmest                                                                                                                                                                                                                                   warmest
## west                                                                                                                                                                                                                                         west
## winds                                                                                                                                                                                                                                       winds
## basins                                                                                                                                                                                                                                     basins
## block                                                                                                                                                                                                                                       block
## columbia                                                                                                                                                                                                                                 columbia
## coming                                                                                                                                                                                                                                     coming
## distance                                                                                                                                                                                                                                 distance
## distribute                                                                                                                                                                                                                             distribute
## eastern                                                                                                                                                                                                                                   eastern
## elevation                                                                                                                                                                                                                               elevation
## exposure                                                                                                                                                                                                                                 exposure
## gradient                                                                                                                                                                                                                                 gradient
## great                                                                                                                                                                                                                                       great
## islands                                                                                                                                                                                                                                   islands
## marine                                                                                                                                                                                                                                     marine
## masses                                                                                                                                                                                                                                     masses
## mild                                                                                                                                                                                                                                         mild
## northsouth                                                                                                                                                                                                                             northsouth
## parallel                                                                                                                                                                                                                                 parallel
## prairies                                                                                                                                                                                                                                 prairies
## separated                                                                                                                                                                                                                               separated
## afternoons                                                                                                                                                                                                                             afternoons
## brings                                                                                                                                                                                                                                     brings
## driest                                                                                                                                                                                                                                     driest
## dryer                                                                                                                                                                                                                                       dryer
## elevations                                                                                                                                                                                                                             elevations
## experiences                                                                                                                                                                                                                           experiences
## generating                                                                                                                                                                                                                             generating
## higher                                                                                                                                                                                                                                     higher
## rainshadow                                                                                                                                                                                                                             rainshadow
## range                                                                                                                                                                                                                                       range
## side                                                                                                                                                                                                                                         side
## slopes                                                                                                                                                                                                                                     slopes
## southcentral                                                                                                                                                                                                                         southcentral
## spring                                                                                                                                                                                                                                     spring
## thunderstorm                                                                                                                                                                                                                         thunderstorm
## valleybottoms                                                                                                                                                                                                                       valleybottoms
## valleys                                                                                                                                                                                                                                   valleys
## westerly                                                                                                                                                                                                                                 westerly
## wet                                                                                                                                                                                                                                           wet
## days                                                                                                                                                                                                                                         days
## declared                                                                                                                                                                                                                                 declared
## dramatic                                                                                                                                                                                                                                 dramatic
## history                                                                                                                                                                                                                                   history
## lives                                                                                                                                                                                                                                       lives
## longest                                                                                                                                                                                                                                   longest
## recordbreaking                                                                                                                                                                                                                     recordbreaking
## waves                                                                                                                                                                                                                                       waves
## wild                                                                                                                                                                                                                                         wild
## worst                                                                                                                                                                                                                                       worst
## floods                                                                                                                                                                                                                                     floods
## george                                                                                                                                                                                                                                     george
## harbour                                                                                                                                                                                                                                   harbour
## hot                                                                                                                                                                                                                                           hot
## june                                                                                                                                                                                                                                         june
## lytton                                                                                                                                                                                                                                     lytton
## prince                                                                                                                                                                                                                                     prince
## third                                                                                                                                                                                                                                       third
## victoria                                                                                                                                                                                                                                 victoria
## anything                                                                                                                                                                                                                                 anything
## etal                                                                                                                                                                                                                                         etal
## glaciers                                                                                                                                                                                                                                 glaciers
## mention                                                                                                                                                                                                                                   mention
## moisture                                                                                                                                                                                                                                 moisture
## page                                                                                                                                                                                                                                         page
## spittlehouse                                                                                                                                                                                                                         spittlehouse
## normals                                                                                                                                                                                                                                   normals
## compared                                                                                                                                                                                                                                 compared
## norm                                                                                                                                                                                                                                         norm
## year                                                                                                                                                                                                                                         year
## max                                                                                                                                                                                                                                           max
## min                                                                                                                                                                                                                                           min
## norms                                                                                                                                                                                                                                       norms
## precip                                                                                                                                                                                                                                     precip
## temp                                                                                                                                                                                                                                         temp
## differ                                                                                                                                                                                                                                     differ
## mean                                                                                                                                                                                                                                         mean
## planetary                                                                                                                                                                                                                               planetary
## leading                                                                                                                                                                                                                                   leading
## jurisdiction                                                                                                                                                                                                                         jurisdiction
## actuaries                                                                                                                                                                                                                               actuaries
## index                                                                                                                                                                                                                                       index
## asterix                                                                                                                                                                                                                                   asterix
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                                                                         httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                                                                                               httpsdatapacificclimateorgportaldownscaledgcmsmap
## strength                                                                                                                                                                                                                                 strength
## forecast                                                                                                                                                                                                                                 forecast
## modeled                                                                                                                                                                                                                                   modeled
## prediction                                                                                                                                                                                                                             prediction
## projection                                                                                                                                                                                                                             projection
## see                                                                                                                                                                                                                                           see
## httpstwittercomthomasforbcstatuss                                                                                                                                                                               httpstwittercomthomasforbcstatuss
## amount                                                                                                                                                                                                                                     amount
## drying                                                                                                                                                                                                                                     drying
## melt                                                                                                                                                                                                                                         melt
## persistence                                                                                                                                                                                                                           persistence
## snowpack                                                                                                                                                                                                                                 snowpack
## get                                                                                                                                                                                                                                           get
## hotter                                                                                                                                                                                                                                     hotter
## summers                                                                                                                                                                                                                                   summers
## trend                                                                                                                                                                                                                                       trend
## months                                                                                                                                                                                                                                     months
## decadal                                                                                                                                                                                                                                   decadal
## american                                                                                                                                                                                                                                 american
## lifetime                                                                                                                                                                                                                                 lifetime
## pattern                                                                                                                                                                                                                                   pattern
## amplified                                                                                                                                                                                                                               amplified
## coincided                                                                                                                                                                                                                               coincided
## cycles                                                                                                                                                                                                                                     cycles
## series                                                                                                                                                                                                                                     series
## imbalance                                                                                                                                                                                                                               imbalance
## increases                                                                                                                                                                                                                               increases
## keeping                                                                                                                                                                                                                                   keeping
## relative                                                                                                                                                                                                                                 relative
## transfer                                                                                                                                                                                                                                 transfer
## •                                                                                                                                                                                                                                               •
## affects                                                                                                                                                                                                                                   affects
## heating                                                                                                                                                                                                                                   heating
## slowly                                                                                                                                                                                                                                     slowly
## cumulative                                                                                                                                                                                                                             cumulative
## deforestation                                                                                                                                                                                                                       deforestation
## esp                                                                                                                                                                                                                                           esp
## march                                                                                                                                                                                                                                       march
## nitrous                                                                                                                                                                                                                                   nitrous
## oxide                                                                                                                                                                                                                                       oxide
## httpsbritishcolumbiacombcweatherbc                                                                                                                                                                             httpsbritishcolumbiacombcweatherbc
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                                                                                 httpspicsuviccaresearchclimatehealthcovidbritishcolumbia
## httpsopentextbccageographychapterclimateenvironmentbc                                                                                                                                       httpsopentextbccageographychapterclimateenvironmentbc
## httpsclimatechangecanadacabritishcolumbia                                                                                                                                                               httpsclimatechangecanadacabritishcolumbia
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                                                           httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia
## guiding                                                                                                                                                                                                                                   guiding
## makers                                                                                                                                                                                                                                     makers
## presented                                                                                                                                                                                                                               presented
## scientists                                                                                                                                                                                                                             scientists
## considers                                                                                                                                                                                                                               considers
## bc’                                                                                                                                                                                                                                           bc’
## depends                                                                                                                                                                                                                                   depends
## grasslands                                                                                                                                                                                                                             grasslands
## healthier                                                                                                                                                                                                                               healthier
## matter                                                                                                                                                                                                                                     matter
## nature                                                                                                                                                                                                                                     nature
## particulate                                                                                                                                                                                                                           particulate
## retention                                                                                                                                                                                                                               retention
## shrubs                                                                                                                                                                                                                                     shrubs
## stored                                                                                                                                                                                                                                     stored
## zone                                                                                                                                                                                                                                         zone
## ‘beautiful                                                                                                                                                                                                                             ‘beautiful
## accessible                                                                                                                                                                                                                             accessible
## distributed                                                                                                                                                                                                                           distributed
## excluded                                                                                                                                                                                                                                 excluded
## inclusive                                                                                                                                                                                                                               inclusive
## inequality                                                                                                                                                                                                                             inequality
## multiple                                                                                                                                                                                                                                 multiple
## reductions                                                                                                                                                                                                                             reductions
## spreading                                                                                                                                                                                                                               spreading
## thus                                                                                                                                                                                                                                         thus
## consultation                                                                                                                                                                                                                         consultation
## diesel                                                                                                                                                                                                                                     diesel
## generators                                                                                                                                                                                                                             generators
## relations                                                                                                                                                                                                                               relations
## reliance                                                                                                                                                                                                                                 reliance
## develop                                                                                                                                                                                                                                   develop
## environments                                                                                                                                                                                                                         environments
## explore                                                                                                                                                                                                                                   explore
## inspired                                                                                                                                                                                                                                 inspired
## lowemission                                                                                                                                                                                                                           lowemission
## researchers                                                                                                                                                                                                                           researchers
## revitalized                                                                                                                                                                                                                           revitalized
## skilled                                                                                                                                                                                                                                   skilled
## smooth                                                                                                                                                                                                                                     smooth
## student                                                                                                                                                                                                                                   student
## chance                                                                                                                                                                                                                                     chance
## cycling                                                                                                                                                                                                                                   cycling
## diversification                                                                                                                                                                                                                   diversification
## managed                                                                                                                                                                                                                                   managed
## newly                                                                                                                                                                                                                                       newly
## nutrient                                                                                                                                                                                                                                 nutrient
## preservation                                                                                                                                                                                                                         preservation
## purification                                                                                                                                                                                                                         purification
## recreation                                                                                                                                                                                                                             recreation
## rethink                                                                                                                                                                                                                                   rethink
## spirituality                                                                                                                                                                                                                         spirituality
## stewardship                                                                                                                                                                                                                           stewardship
## tissue                                                                                                                                                                                                                                     tissue
## wildlife                                                                                                                                                                                                                                 wildlife
## woody                                                                                                                                                                                                                                       woody
## abound                                                                                                                                                                                                                                     abound
## contribution                                                                                                                                                                                                                         contribution
## ensures                                                                                                                                                                                                                                   ensures
## farming                                                                                                                                                                                                                                   farming
## importing                                                                                                                                                                                                                               importing
## preserving                                                                                                                                                                                                                             preserving
## ranching                                                                                                                                                                                                                                 ranching
## rebuilt                                                                                                                                                                                                                                   rebuilt
## recently                                                                                                                                                                                                                                 recently
## reduces                                                                                                                                                                                                                                   reduces
## reserve                                                                                                                                                                                                                                   reserve
## destructive                                                                                                                                                                                                                           destructive
## environmentally                                                                                                                                                                                                                   environmentally
## preparing                                                                                                                                                                                                                               preparing
## reconstruct                                                                                                                                                                                                                           reconstruct
## thrive                                                                                                                                                                                                                                     thrive
## zoning                                                                                                                                                                                                                                     zoning
## cite                                                                                                                                                                                                                                         cite
## cleaning                                                                                                                                                                                                                                 cleaning
## covid                                                                                                                                                                                                                                       covid
## greatly                                                                                                                                                                                                                                   greatly
## lockdown                                                                                                                                                                                                                                 lockdown
## looking                                                                                                                                                                                                                                   looking
## markets                                                                                                                                                                                                                                   markets
## pays                                                                                                                                                                                                                                         pays
## polluter                                                                                                                                                                                                                                 polluter
## principle                                                                                                                                                                                                                               principle
## providing                                                                                                                                                                                                                               providing
## reassessing                                                                                                                                                                                                                           reassessing
## reevaluate                                                                                                                                                                                                                             reevaluate
## something                                                                                                                                                                                                                               something
## try                                                                                                                                                                                                                                           try
## interests                                                                                                                                                                                                                               interests
## involves                                                                                                                                                                                                                                 involves
## myriad                                                                                                                                                                                                                                     myriad
## detractors                                                                                                                                                                                                                             detractors
## measure                                                                                                                                                                                                                                   measure
## supporters                                                                                                                                                                                                                             supporters
## highlight                                                                                                                                                                                                                               highlight
## might                                                                                                                                                                                                                                       might
## mitigated                                                                                                                                                                                                                               mitigated
## overcome                                                                                                                                                                                                                                 overcome
## ided                                                                                                                                                                                                                                         ided
## discuss                                                                                                                                                                                                                                   discuss
## displaced                                                                                                                                                                                                                               displaced
## communicate                                                                                                                                                                                                                           communicate
## inspire                                                                                                                                                                                                                                   inspire
## accepting                                                                                                                                                                                                                               accepting
## comes                                                                                                                                                                                                                                       comes
## continuing                                                                                                                                                                                                                             continuing
## directions                                                                                                                                                                                                                             directions
## emit                                                                                                                                                                                                                                         emit
## expensive                                                                                                                                                                                                                               expensive
## inherent                                                                                                                                                                                                                                 inherent
## paths                                                                                                                                                                                                                                       paths
## problem                                                                                                                                                                                                                                   problem
## relying                                                                                                                                                                                                                                   relying
## researching                                                                                                                                                                                                                           researching
## simply                                                                                                                                                                                                                                     simply
## source                                                                                                                                                                                                                                     source
## suggest                                                                                                                                                                                                                                   suggest
## timelines                                                                                                                                                                                                                               timelines
## unproven                                                                                                                                                                                                                                 unproven
## concerns                                                                                                                                                                                                                                 concerns
## give                                                                                                                                                                                                                                         give
## legitimate                                                                                                                                                                                                                             legitimate
## oceans”                                                                                                                                                                                                                                   oceans”
## places                                                                                                                                                                                                                                     places
## protect                                                                                                                                                                                                                                   protect
## raised                                                                                                                                                                                                                                     raised
## shellfish                                                                                                                                                                                                                               shellfish
## shells                                                                                                                                                                                                                                     shells
## shortterm                                                                                                                                                                                                                               shortterm
## “irreversible                                                                                                                                                                                                                       “irreversible
## advisory                                                                                                                                                                                                                                 advisory
## advocating                                                                                                                                                                                                                             advocating
## businesses                                                                                                                                                                                                                             businesses
## consumers                                                                                                                                                                                                                               consumers
## disabled                                                                                                                                                                                                                                 disabled
## individual                                                                                                                                                                                                                             individual
## member                                                                                                                                                                                                                                     member
## missing                                                                                                                                                                                                                                   missing
## organizations                                                                                                                                                                                                                       organizations
## poverty                                                                                                                                                                                                                                   poverty
## seeking                                                                                                                                                                                                                                   seeking
## accepted                                                                                                                                                                                                                                 accepted
## declaration                                                                                                                                                                                                                           declaration
## departments                                                                                                                                                                                                                           departments
## drip                                                                                                                                                                                                                                         drip
## engagement                                                                                                                                                                                                                             engagement
## forms                                                                                                                                                                                                                                       forms
## governance                                                                                                                                                                                                                             governance
## hereditary                                                                                                                                                                                                                             hereditary
## indian                                                                                                                                                                                                                                     indian
## lands                                                                                                                                                                                                                                       lands
## peoples                                                                                                                                                                                                                                   peoples
## personnel                                                                                                                                                                                                                               personnel
## protocols                                                                                                                                                                                                                               protocols
## reservation                                                                                                                                                                                                                           reservation
## situated                                                                                                                                                                                                                                 situated
## territorial                                                                                                                                                                                                                           territorial
## treaties                                                                                                                                                                                                                                 treaties
## decline                                                                                                                                                                                                                                   decline
## except                                                                                                                                                                                                                                     except
## expansion                                                                                                                                                                                                                               expansion
## general                                                                                                                                                                                                                                   general
## greenenergy                                                                                                                                                                                                                           greenenergy
## retirements                                                                                                                                                                                                                           retirements
## socioeconomic                                                                                                                                                                                                                       socioeconomic
## absorption                                                                                                                                                                                                                             absorption
## ecoservices                                                                                                                                                                                                                           ecoservices
## insect                                                                                                                                                                                                                                     insect
## pause                                                                                                                                                                                                                                       pause
## stressed                                                                                                                                                                                                                                 stressed
## system                                                                                                                                                                                                                                     system
## techniques                                                                                                                                                                                                                             techniques
## uncertainty                                                                                                                                                                                                                           uncertainty
## unsustainable                                                                                                                                                                                                                       unsustainable
## addressed                                                                                                                                                                                                                               addressed
## alternate                                                                                                                                                                                                                               alternate
## became                                                                                                                                                                                                                                     became
## grown                                                                                                                                                                                                                                       grown
## locally                                                                                                                                                                                                                                   locally
## prone                                                                                                                                                                                                                                       prone
## remain                                                                                                                                                                                                                                     remain
## toxins                                                                                                                                                                                                                                     toxins
## adaption                                                                                                                                                                                                                                 adaption
## anew                                                                                                                                                                                                                                         anew
## considered                                                                                                                                                                                                                             considered
## expense                                                                                                                                                                                                                                   expense
## farm                                                                                                                                                                                                                                         farm
## income                                                                                                                                                                                                                                     income
## infrastructure”                                                                                                                                                                                                                   infrastructure”
## lost                                                                                                                                                                                                                                         lost
## policies”                                                                                                                                                                                                                               policies”
## require                                                                                                                                                                                                                                   require
## results                                                                                                                                                                                                                                   results
## “ambitious                                                                                                                                                                                                                             “ambitious
## “systemic                                                                                                                                                                                                                               “systemic
## comparisons                                                                                                                                                                                                                           comparisons
## previous                                                                                                                                                                                                                                 previous
## conclusions                                                                                                                                                                                                                           conclusions
## summaryconclude                                                                                                                                                                                                                   summaryconclude
## parts                                                                                                                                                                                                                                       parts
## open                                                                                                                                                                                                                                         open
## paragraph                                                                                                                                                                                                                               paragraph
## parti                                                                                                                                                                                                                                       parti
## along                                                                                                                                                                                                                                       along
## demographic                                                                                                                                                                                                                           demographic
## varying                                                                                                                                                                                                                                   varying
## actor                                                                                                                                                                                                                                       actor
## pick                                                                                                                                                                                                                                         pick
## fulfillment                                                                                                                                                                                                                           fulfillment
## identification                                                                                                                                                                                                                     identification
## issue                                                                                                                                                                                                                                       issue
## suggested                                                                                                                                                                                                                               suggested
## actionoriented                                                                                                                                                                                                                     actionoriented
## inclusion                                                                                                                                                                                                                               inclusion
## practical                                                                                                                                                                                                                               practical
## rationales                                                                                                                                                                                                                             rationales
## term                                                                                                                                                                                                                                         term
## think                                                                                                                                                                                                                                       think
## underway                                                                                                                                                                                                                                 underway
## factor                                                                                                                                                                                                                                     factor
## consideration                                                                                                                                                                                                                       consideration
## number                                                                                                                                                                                                                                     number
## order                                                                                                                                                                                                                                       order
## posed                                                                                                                                                                                                                                       posed
## strategic                                                                                                                                                                                                                               strategic
## avoid                                                                                                                                                                                                                                       avoid
## linealigned                                                                                                                                                                                                                           linealigned
## sake                                                                                                                                                                                                                                         sake
## sure                                                                                                                                                                                                                                         sure
## thought                                                                                                                                                                                                                                   thought
## wise                                                                                                                                                                                                                                         wise
## appropriate                                                                                                                                                                                                                           appropriate
## estate                                                                                                                                                                                                                                     estate
## extraction                                                                                                                                                                                                                             extraction
## real                                                                                                                                                                                                                                         real
## restore                                                                                                                                                                                                                                   restore
## valuable                                                                                                                                                                                                                                 valuable
## assure                                                                                                                                                                                                                                     assure
## fair                                                                                                                                                                                                                                         fair
## finance                                                                                                                                                                                                                                   finance
## industrial                                                                                                                                                                                                                             industrial
## just                                                                                                                                                                                                                                         just
## supportive                                                                                                                                                                                                                             supportive
## green                                                                                                                                                                                                                                       green
## process                                                                                                                                                                                                                                   process
## relationships                                                                                                                                                                                                                       relationships
## together                                                                                                                                                                                                                                 together
## carbonfree                                                                                                                                                                                                                             carbonfree
## design                                                                                                                                                                                                                                     design
## engineer                                                                                                                                                                                                                                 engineer
## innovate                                                                                                                                                                                                                                 innovate
## maintain                                                                                                                                                                                                                                 maintain
## produce                                                                                                                                                                                                                                   produce
## train                                                                                                                                                                                                                                       train
## transitioning                                                                                                                                                                                                                       transitioning
## young                                                                                                                                                                                                                                       young
## capture                                                                                                                                                                                                                                   capture
## deciduous                                                                                                                                                                                                                               deciduous
## diverse                                                                                                                                                                                                                                   diverse
## effectively                                                                                                                                                                                                                           effectively
## firebreak                                                                                                                                                                                                                               firebreak
## functions                                                                                                                                                                                                                               functions
## mills                                                                                                                                                                                                                                       mills
## refit                                                                                                                                                                                                                                       refit
## smaller                                                                                                                                                                                                                                   smaller
## tree                                                                                                                                                                                                                                         tree
## compliance                                                                                                                                                                                                                             compliance
## continuation                                                                                                                                                                                                                         continuation
## enforcement                                                                                                                                                                                                                           enforcement
## equipment                                                                                                                                                                                                                               equipment
## gaspowered                                                                                                                                                                                                                             gaspowered
## innovations                                                                                                                                                                                                                           innovations
## replace                                                                                                                                                                                                                                   replace
## demolishing                                                                                                                                                                                                                           demolishing
## don’t                                                                                                                                                                                                                                       don’t
## fireresiliency                                                                                                                                                                                                                     fireresiliency
## focus                                                                                                                                                                                                                                       focus
## restoring                                                                                                                                                                                                                               restoring
## risk                                                                                                                                                                                                                                         risk
## safe                                                                                                                                                                                                                                         safe
## structures                                                                                                                                                                                                                             structures
## updating                                                                                                                                                                                                                                 updating
## exhaustive                                                                                                                                                                                                                             exhaustive
## ‘lens’                                                                                                                                                                                                                                     ‘lens’
## sense                                                                                                                                                                                                                                       sense
## urgency                                                                                                                                                                                                                                   urgency
## ultimate                                                                                                                                                                                                                                 ultimate
## initiating                                                                                                                                                                                                                             initiating
## lead                                                                                                                                                                                                                                         lead
## market                                                                                                                                                                                                                                     market
## initial                                                                                                                                                                                                                                   initial
## outline                                                                                                                                                                                                                                   outline
## refer                                                                                                                                                                                                                                       refer
## difference’                                                                                                                                                                                                                           difference’
## know                                                                                                                                                                                                                                         know
## recognizing                                                                                                                                                                                                                           recognizing
## ‘make                                                                                                                                                                                                                                       ‘make
## honour                                                                                                                                                                                                                                     honour
## reason                                                                                                                                                                                                                                     reason
## reports                                                                                                                                                                                                                                   reports
## taking                                                                                                                                                                                                                                     taking
## british                                                                                                                                                                                                                                   british
## business                                                                                                                                                                                                                                 business
## columbians                                                                                                                                                                                                                             columbians
## ensured                                                                                                                                                                                                                                   ensured
## stewarding                                                                                                                                                                                                                             stewarding
## unique                                                                                                                                                                                                                                     unique
## vibrant                                                                                                                                                                                                                                   vibrant
##                                                                                                                          freq
## climate                                                                                                                    67
## emissions                                                                                                                  41
## bc’s                                                                                                                       25
## will                                                                                                                       23
## change                                                                                                                     22
## reduce                                                                                                                     21
## carbon                                                                                                                     17
## help                                                                                                                       17
## regions                                                                                                                    16
## ghg                                                                                                                        16
## action                                                                                                                     15
## future                                                                                                                     15
## indigenous                                                                                                                 15
## challenges                                                                                                                 15
## weather                                                                                                                    15
## temperature                                                                                                                14
## also                                                                                                                       14
## industry                                                                                                                   14
## opportunity                                                                                                                14
## changing                                                                                                                   13
## social                                                                                                                     13
## economic                                                                                                                   13
## building                                                                                                                   13
## opportunities                                                                                                              13
## recommendations                                                                                                            12
## new                                                                                                                        12
## mitigation                                                                                                                 12
## gas                                                                                                                        11
## including                                                                                                                  11
## paris                                                                                                                      11
## provincial                                                                                                                 11
## canada’s                                                                                                                   11
## land                                                                                                                       11
## development                                                                                                                11
## energy                                                                                                                     11
## reducing                                                                                                                   11
## words                                                                                                                      11
## –                                                                                                                          11
## can                                                                                                                        10
## strategies                                                                                                                 10
## global                                                                                                                     10
## increased                                                                                                                  10
## agriculture                                                                                                                10
## natural                                                                                                                    10
## need                                                                                                                       10
## skills                                                                                                                     10
## recommendation                                                                                                             10
## food                                                                                                                       10
## supporting                                                                                                                 10
## changes                                                                                                                    10
## challenge                                                                                                                  10
## forests                                                                                                                     9
## communities                                                                                                                 9
## adaptation                                                                                                                  9
## clean                                                                                                                       9
## technology                                                                                                                  9
## benefits                                                                                                                    9
## provide                                                                                                                     9
## events                                                                                                                      9
## different                                                                                                                   8
## people                                                                                                                      8
## political                                                                                                                   8
## ipcc                                                                                                                        8
## growth                                                                                                                      8
## region                                                                                                                      8
## interior                                                                                                                    8
## buildings                                                                                                                   8
## oil                                                                                                                         8
## transportation                                                                                                              8
## protecting                                                                                                                  8
## training                                                                                                                    8
## agreement                                                                                                                   8
## integrity                                                                                                                   8
## well                                                                                                                        8
## section                                                                                                                     8
## extreme                                                                                                                     8
## air                                                                                                                         8
## environmental                                                                                                               8
## needs                                                                                                                       8
## support                                                                                                                     7
## ocean                                                                                                                       7
## biodiversity                                                                                                                7
## include                                                                                                                     7
## increasing                                                                                                                  7
## first                                                                                                                       7
## urgent                                                                                                                      7
## commitments                                                                                                                 7
## capacity                                                                                                                    7
## security                                                                                                                    7
## ecological                                                                                                                  7
## lowcarbon                                                                                                                   7
## atmospheric                                                                                                                 7
## services                                                                                                                    7
## analysis                                                                                                                    6
## report                                                                                                                      6
## cleanbc                                                                                                                     6
## ndc                                                                                                                         6
## mountains                                                                                                                   6
## regional                                                                                                                    6
## groups                                                                                                                      6
## north                                                                                                                       6
## potential                                                                                                                   6
## coastal                                                                                                                     6
## adapt                                                                                                                       6
## commitment                                                                                                                  6
## past                                                                                                                        6
## since                                                                                                                       6
## climates                                                                                                                    6
## find                                                                                                                        6
## levels                                                                                                                      6
## °c                                                                                                                          6
## temperatures                                                                                                                6
## years                                                                                                                       6
## ensuring                                                                                                                    6
## equity                                                                                                                      6
## precipitation                                                                                                               6
## summary                                                                                                                     6
## systems                                                                                                                     6
## century                                                                                                                     6
## incorporate                                                                                                                 6
## solutions                                                                                                                   6
## water                                                                                                                       6
## ensure                                                                                                                      6
## important                                                                                                                   5
## accord                                                                                                                      5
## address                                                                                                                     5
## canada                                                                                                                      5
## impacts                                                                                                                     5
## international                                                                                                               5
## warming                                                                                                                     5
## pacific                                                                                                                     5
## province                                                                                                                    5
## south                                                                                                                       5
## health                                                                                                                      5
## population                                                                                                                  5
## result                                                                                                                      5
## though                                                                                                                      5
## within                                                                                                                      5
## forestry                                                                                                                    5
## key                                                                                                                         5
## sectors                                                                                                                     5
## actions                                                                                                                     5
## continue                                                                                                                    5
## local                                                                                                                       5
## based                                                                                                                       5
## flooding                                                                                                                    5
## canadian                                                                                                                    5
## goals                                                                                                                       5
## time                                                                                                                        5
## jobs                                                                                                                        5
## economy                                                                                                                     5
## forest                                                                                                                      5
## fulfill                                                                                                                     5
## reduction                                                                                                                   5
## innovative                                                                                                                  5
## mitigate                                                                                                                    5
## policy                                                                                                                      5
## trees                                                                                                                       5
## become                                                                                                                      5
## work                                                                                                                        5
## make                                                                                                                        5
## communication                                                                                                               5
## copied                                                                                                                      5
## edited                                                                                                                      5
## managing                                                                                                                    5
## still                                                                                                                       5
## part                                                                                                                        4
## contribute                                                                                                                  4
## live                                                                                                                        4
## respond                                                                                                                     4
## accelerated                                                                                                                 4
## plan                                                                                                                        4
## area                                                                                                                        4
## mountain                                                                                                                    4
## northern                                                                                                                    4
## total                                                                                                                       4
## creating                                                                                                                    4
## districts                                                                                                                   4
## high                                                                                                                        4
## use                                                                                                                         4
## increase                                                                                                                    4
## less                                                                                                                        4
## may                                                                                                                         4
## projected                                                                                                                   4
## workers                                                                                                                     4
## central                                                                                                                     4
## experienced                                                                                                                 4
## coast                                                                                                                       4
## gdp                                                                                                                         4
## government                                                                                                                  4
## recent                                                                                                                      4
## financial                                                                                                                   4
## recovery                                                                                                                    4
## wildfire                                                                                                                    4
## balance                                                                                                                     4
## healthy                                                                                                                     4
## rise                                                                                                                        4
## effects                                                                                                                     4
## knowledge                                                                                                                   4
## resilience                                                                                                                  4
## traditional                                                                                                                 4
## competitive                                                                                                                 4
## emission                                                                                                                    4
## encourage                                                                                                                   4
## fuel                                                                                                                        4
## tax                                                                                                                         4
## costs                                                                                                                       4
## sector                                                                                                                      4
## workforce                                                                                                                   4
## becoming                                                                                                                    4
## patterns                                                                                                                    4
## period                                                                                                                      4
## summer                                                                                                                      4
## winter                                                                                                                      4
## cold                                                                                                                        4
## warm                                                                                                                        4
## wetter                                                                                                                      4
## fires                                                                                                                       4
## observed                                                                                                                    4
## look                                                                                                                        4
## lecture                                                                                                                     4
##                                                                                                                            4
## methane                                                                                                                     4
## offer                                                                                                                       4
## build                                                                                                                       4
## rebuilding                                                                                                                  4
## way                                                                                                                         4
## intro                                                                                                                       4
## background                                                                                                                  3
## developing                                                                                                                  3
## geographic                                                                                                                  3
## includes                                                                                                                    3
## industries                                                                                                                  3
## information                                                                                                                 3
## used                                                                                                                        3
## created                                                                                                                     3
## dioxide                                                                                                                     3
## earth’s                                                                                                                     3
## issues                                                                                                                      3
## obligations                                                                                                                 3
## roadmap                                                                                                                     3
## crown                                                                                                                       3
## east                                                                                                                        3
## hectares                                                                                                                    3
## million                                                                                                                     3
## ranges                                                                                                                      3
## western                                                                                                                     3
## biogeoclimatic                                                                                                              3
## manage                                                                                                                      3
## vegetation                                                                                                                  3
## demographics                                                                                                                3
## areas                                                                                                                       3
## territories                                                                                                                 3
## dry                                                                                                                         3
## geography                                                                                                                   3
## construction                                                                                                                3
## logging                                                                                                                     3
## prior                                                                                                                       3
## rights                                                                                                                      3
## cpas                                                                                                                        3
## following                                                                                                                   3
## infrastructure                                                                                                              3
## nations                                                                                                                     3
## next                                                                                                                        3
## plans                                                                                                                       3
## policies                                                                                                                    3
## targets                                                                                                                     3
## affordable                                                                                                                  3
## innovation                                                                                                                  3
## keep                                                                                                                        3
## limit                                                                                                                       3
## made                                                                                                                        3
## preindustrial                                                                                                               3
## production                                                                                                                  3
## sustainable                                                                                                                 3
## every                                                                                                                       3
## reduced                                                                                                                     3
## education                                                                                                                   3
## encouraging                                                                                                                 3
## equitable                                                                                                                   3
## experience                                                                                                                  3
## incorporating                                                                                                               3
## learning                                                                                                                    3
## taken                                                                                                                       3
## creation                                                                                                                    3
## goal                                                                                                                        3
## homes                                                                                                                       3
## increasingly                                                                                                                3
## per                                                                                                                         3
## pollution                                                                                                                   3
## beyond                                                                                                                      3
## community                                                                                                                   3
## create                                                                                                                      3
## ecosystem                                                                                                                   3
## helping                                                                                                                     3
## strategy                                                                                                                    3
## technologies                                                                                                                3
## fund                                                                                                                        3
## projects                                                                                                                    3
## research                                                                                                                    3
## incentives                                                                                                                  3
## large                                                                                                                       3
## heat                                                                                                                        3
## continues                                                                                                                   3
## present                                                                                                                     3
## variations                                                                                                                  3
## averages                                                                                                                    3
## duration                                                                                                                    3
## wind                                                                                                                        3
## associated                                                                                                                  3
## atmosphere                                                                                                                  3
## circulation                                                                                                                 3
## flow                                                                                                                        3
## good                                                                                                                        3
## long                                                                                                                        3
## season                                                                                                                      3
## agricultural                                                                                                                3
## drought                                                                                                                     3
## emergency                                                                                                                   3
## november                                                                                                                    3
## resulting                                                                                                                   3
## locations                                                                                                                   3
## record                                                                                                                      3
## recorded                                                                                                                    3
## average                                                                                                                     3
## current                                                                                                                     3
## environment                                                                                                                 3
## trends                                                                                                                      3
## summarize                                                                                                                   3
## check                                                                                                                       3
## oscillation                                                                                                                 3
## effect                                                                                                                      3
## ability                                                                                                                     3
## species                                                                                                                     3
## landuse                                                                                                                     3
## already                                                                                                                     3
## developed                                                                                                                   3
## creative                                                                                                                    3
## affect                                                                                                                      3
## nature’s                                                                                                                    3
## addressing                                                                                                                  3
## growing                                                                                                                     3
## transition                                                                                                                  3
## instead                                                                                                                     3
## ways                                                                                                                        3
## codes                                                                                                                       3
## quality                                                                                                                     3
## plant                                                                                                                       3
## led                                                                                                                         3
## introduction                                                                                                                2
## brief                                                                                                                       2
## description                                                                                                                 2
## economically                                                                                                                2
## offers                                                                                                                      2
## due                                                                                                                         2
## especially                                                                                                                  2
## intergovernmental                                                                                                           2
## panel                                                                                                                       2
## pathways                                                                                                                    2
## required                                                                                                                    2
## border                                                                                                                      2
## rocky                                                                                                                       2
## authorities                                                                                                                 2
## census                                                                                                                      2
## ecosystems                                                                                                                  2
## geopolitical                                                                                                                2
## macroclimate                                                                                                                2
## municipalities                                                                                                              2
## school                                                                                                                      2
## subdivisions                                                                                                                2
## zones                                                                                                                       2
## ages                                                                                                                        2
## depending                                                                                                                   2
## fewer                                                                                                                       2
## migration                                                                                                                   2
## senior                                                                                                                      2
## cities                                                                                                                      2
## mostly                                                                                                                      2
## nation                                                                                                                      2
## rural                                                                                                                       2
## towns                                                                                                                       2
## villages                                                                                                                    2
## cariboo                                                                                                                     2
## mining                                                                                                                      2
## plateau                                                                                                                     2
## private                                                                                                                     2
## remote                                                                                                                      2
## specific                                                                                                                    2
## tourism                                                                                                                     2
## contributes                                                                                                                 2
## consent                                                                                                                     2
## examples                                                                                                                    2
## forward                                                                                                                     2
## free                                                                                                                        2
## informed                                                                                                                    2
## much                                                                                                                        2
## oldgrowth                                                                                                                   2
## subsidies                                                                                                                   2
## territory                                                                                                                   2
## unceded                                                                                                                     2
## accomplishments                                                                                                             2
## agreements                                                                                                                  2
## backdrop                                                                                                                    2
## budget                                                                                                                      2
## election                                                                                                                    2
## federal                                                                                                                     2
## liberal                                                                                                                     2
## majority                                                                                                                    2
## making                                                                                                                      2
## management                                                                                                                  2
## minority                                                                                                                    2
## responsibilities                                                                                                            2
## reviewing                                                                                                                   2
## speech                                                                                                                      2
## throne                                                                                                                      2
## equality                                                                                                                    2
## netzero                                                                                                                     2
## ppm                                                                                                                         2
## states                                                                                                                      2
## contributions                                                                                                               2
## c°                                                                                                                          2
## determined                                                                                                                  2
## nationally                                                                                                                  2
## rising                                                                                                                      2
## ambitious                                                                                                                   2
## balancing                                                                                                                   2
## considering                                                                                                                 2
## effective                                                                                                                   2
## monitoring                                                                                                                  2
## participation                                                                                                               2
## public                                                                                                                      2
## rapidly                                                                                                                     2
## risks                                                                                                                       2
## scientific                                                                                                                  2
## technological                                                                                                               2
## vulnerable                                                                                                                  2
## adapting                                                                                                                    2
## advantage                                                                                                                   2
## job                                                                                                                         2
## pricing                                                                                                                     2
## waste                                                                                                                       2
## economics                                                                                                                   2
## low                                                                                                                         2
## negative                                                                                                                    2
## partnerships                                                                                                                2
## consumer                                                                                                                    2
## fossil                                                                                                                      2
## introduced                                                                                                                  2
## lower                                                                                                                       2
## revenue                                                                                                                     2
## efficient                                                                                                                   2
## electric                                                                                                                    2
## existing                                                                                                                    2
## old                                                                                                                         2
## retrofitting                                                                                                                2
## direct                                                                                                                      2
## obvious                                                                                                                     2
## quest                                                                                                                       2
## take                                                                                                                        2
## towards                                                                                                                     2
## factors                                                                                                                     2
## many                                                                                                                        2
## clouds                                                                                                                      2
## conditions                                                                                                                  2
## daily                                                                                                                       2
## direction                                                                                                                   2
## extremes                                                                                                                    2
## intensity                                                                                                                   2
## like                                                                                                                        2
## normal                                                                                                                      2
## place                                                                                                                       2
## pressure                                                                                                                    2
## cycle                                                                                                                       2
## highpressure                                                                                                                2
## influence                                                                                                                   2
## influenced                                                                                                                  2
## largescale                                                                                                                  2
## maritime                                                                                                                    2
## niño                                                                                                                        2
## small                                                                                                                       2
## continental                                                                                                                 2
## latitude                                                                                                                    2
## moderate                                                                                                                    2
## plains                                                                                                                      2
## plateaus                                                                                                                    2
## southern                                                                                                                    2
## varies                                                                                                                      2
## activity                                                                                                                    2
## arctic                                                                                                                      2
## early                                                                                                                       2
## largest                                                                                                                     2
## snow                                                                                                                        2
## burning                                                                                                                     2
## day                                                                                                                         2
## fertile                                                                                                                     2
## fire                                                                                                                        2
## frequency                                                                                                                   2
## human                                                                                                                       2
## impact                                                                                                                      2
## one                                                                                                                         2
## prairie                                                                                                                     2
## rain                                                                                                                        2
## river                                                                                                                       2
## state                                                                                                                       2
## sumas                                                                                                                       2
## values                                                                                                                      2
## december                                                                                                                    2
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf    2
## variability                                                                                                                 2
## drier                                                                                                                       2
## last                                                                                                                        2
## systemic                                                                                                                    2
## maps                                                                                                                        2
## material                                                                                                                    2
## expectations                                                                                                                2
## module                                                                                                                      2
## notes                                                                                                                       2
## slide                                                                                                                       2
## longterm                                                                                                                    2
## oceans                                                                                                                      2
## stabilize                                                                                                                   2
## acidic                                                                                                                      2
## habitat                                                                                                                     2
## adaptive                                                                                                                    2
## vulnerabilities                                                                                                             2
## pages                                                                                                                       2
## necessary                                                                                                                   2
## themes                                                                                                                      2
## wetlands                                                                                                                    2
## across                                                                                                                      2
## often                                                                                                                       2
## populations                                                                                                                 2
## representative                                                                                                              2
## ministry                                                                                                                    2
## reconciliation                                                                                                              2
## sources                                                                                                                     2
## youth                                                                                                                       2
## cleanenergy                                                                                                                 2
## employment                                                                                                                  2
## force                                                                                                                       2
## remove                                                                                                                      2
## resource                                                                                                                    2
## soil                                                                                                                        2
## storage                                                                                                                     2
## store                                                                                                                       2
## timber                                                                                                                      2
## farms                                                                                                                       2
## flooded                                                                                                                     2
## fraser                                                                                                                      2
## legislation                                                                                                                 2
## manure                                                                                                                      2
## valley                                                                                                                      2
## flood                                                                                                                       2
## preserve                                                                                                                    2
## resources                                                                                                                   2
## bold                                                                                                                        2
## exists                                                                                                                      2
## invest                                                                                                                      2
## competing                                                                                                                   2
## advice                                                                                                                      2
## meet                                                                                                                        2
## track                                                                                                                       2
## causing                                                                                                                     2
## damage                                                                                                                      2
## protests                                                                                                                    2
## affordability                                                                                                               2
## consider                                                                                                                    2
## council                                                                                                                     2
## chiefs                                                                                                                      2
## continued                                                                                                                   2
## ongoing                                                                                                                     2
## without                                                                                                                     2
## rebuild                                                                                                                     2
## using                                                                                                                       2
## list                                                                                                                        2
## foster                                                                                                                      2
## …                                                                                                                           2
## needed                                                                                                                      2
## conclusion                                                                                                                  2
## cabinet                                                                                                                     1
## confidential                                                                                                                1
## considerations                                                                                                              1
## discussion                                                                                                                  1
## tool                                                                                                                        1
## vastly                                                                                                                      1
## activities                                                                                                                  1
## cause                                                                                                                       1
## cooperation                                                                                                                 1
## greenhouse                                                                                                                  1
## humanrelated                                                                                                                1
## lessen                                                                                                                      1
## national                                                                                                                    1
## outlined                                                                                                                    1
## reported                                                                                                                    1
## signed                                                                                                                      1
## surface                                                                                                                     1
## alberta                                                                                                                     1
## boreal                                                                                                                      1
## coastline                                                                                                                   1
## rugged                                                                                                                      1
## stretching                                                                                                                  1
## usa                                                                                                                         1
## categories                                                                                                                  1
## distinct                                                                                                                    1
## divided                                                                                                                     1
## divisions                                                                                                                   1
## numerous                                                                                                                    1
## phsyiographic                                                                                                               1
## plus                                                                                                                        1
## similar                                                                                                                     1
## subareas                                                                                                                    1
## useful                                                                                                                      1
## variety                                                                                                                     1
## aging                                                                                                                       1
## births                                                                                                                      1
## deaths                                                                                                                      1
## decrease                                                                                                                    1
## interprovincial                                                                                                             1
## now                                                                                                                         1
## passed                                                                                                                      1
## populace                                                                                                                    1
## retire                                                                                                                      1
## shows                                                                                                                       1
## slightly                                                                                                                    1
## stats                                                                                                                       1
## working                                                                                                                     1
## age                                                                                                                         1
## comprise                                                                                                                    1
## least                                                                                                                       1
## okanagan                                                                                                                    1
## reserves                                                                                                                    1
## urban                                                                                                                       1
## younger                                                                                                                     1
## cover                                                                                                                       1
## culture                                                                                                                     1
## drivers                                                                                                                     1
## iii                                                                                                                         1
## island                                                                                                                      1
## kootenay                                                                                                                    1
## mainland                                                                                                                    1
## nechako                                                                                                                     1
## northeast                                                                                                                   1
## occur                                                                                                                       1
## occurs                                                                                                                      1
## pipelines                                                                                                                   1
## southwest                                                                                                                   1
## thompsonokanagan                                                                                                            1
## utilities                                                                                                                   1
## vancouver                                                                                                                   1
## decreasing                                                                                                                  1
## domestic                                                                                                                    1
## emitting                                                                                                                    1
## gross                                                                                                                       1
## hydro                                                                                                                       1
## manufacturing                                                                                                               1
## megatons                                                                                                                    1
## product                                                                                                                     1
## service                                                                                                                     1
## acceptance                                                                                                                  1
## access                                                                                                                      1
## authority                                                                                                                   1
## citizens                                                                                                                    1
## creek                                                                                                                       1
## decisionmaking                                                                                                              1
## exercise                                                                                                                    1
## expected                                                                                                                    1
## fairy                                                                                                                       1
## gaslink                                                                                                                     1
## going                                                                                                                       1
## landscape                                                                                                                   1
## pipeline                                                                                                                    1
## protest                                                                                                                     1
## protocol                                                                                                                    1
## right                                                                                                                       1
## undrip                                                                                                                      1
## wet’suwet’en                                                                                                                1
## collaborating                                                                                                               1
## crisis”                                                                                                                     1
## focusing                                                                                                                    1
## followed                                                                                                                    1
## formed                                                                                                                      1
## furthering                                                                                                                  1
## highlighted                                                                                                                 1
## investing                                                                                                                   1
## money                                                                                                                       1
## ndp                                                                                                                         1
## prepare                                                                                                                     1
## prevention                                                                                                                  1
## resilient                                                                                                                   1
## set                                                                                                                         1
## setting                                                                                                                     1
## wildfires                                                                                                                   1
## “climate                                                                                                                    1
## affecting                                                                                                                   1
## affirms                                                                                                                     1
## assessment                                                                                                                  1
## call                                                                                                                        1
## consumption                                                                                                                 1
## currently                                                                                                                   1
## drives                                                                                                                      1
## exceed                                                                                                                      1
## experts                                                                                                                     1
## fall                                                                                                                        1
## life                                                                                                                        1
## likely                                                                                                                      1
## newest                                                                                                                      1
## reductions”                                                                                                                 1
## responsible                                                                                                                 1
## special                                                                                                                     1
## sustainability                                                                                                              1
## understanding                                                                                                               1
## unless                                                                                                                      1
## update                                                                                                                      1
## written                                                                                                                     1
## “deep                                                                                                                       1
## agreed                                                                                                                      1
## binding                                                                                                                     1
## detailed                                                                                                                    1
## legally                                                                                                                     1
## motivated                                                                                                                   1
## preferably                                                                                                                  1
## ratified                                                                                                                    1
## sovereign                                                                                                                   1
## submit                                                                                                                      1
## treaty                                                                                                                      1
## available                                                                                                                   1
## aware                                                                                                                       1
## best                                                                                                                        1
## diversifying                                                                                                                1
## economies                                                                                                                   1
## efforts                                                                                                                     1
## enacting                                                                                                                    1
## evaluating                                                                                                                  1
## financing                                                                                                                   1
## guided                                                                                                                      1
## knowledge“                                                                                                                  1
## mobilizing                                                                                                                  1
## planning                                                                                                                    1
## programs                                                                                                                    1
## responses                                                                                                                   1
## transparent                                                                                                                 1
## unfcc                                                                                                                       1
## vision“                                                                                                                     1
## “                                                                                                                           1
## “longterm                                                                                                                   1
## cutting                                                                                                                     1
## enhanced                                                                                                                    1
## families                                                                                                                    1
## habitats                                                                                                                    1
## household                                                                                                                   1
## innovating                                                                                                                  1
## original                                                                                                                    1
## outlining                                                                                                                   1
## rebates                                                                                                                     1
## respecting                                                                                                                  1
## submitted                                                                                                                   1
## bioeconomy                                                                                                                  1
## climatechange                                                                                                               1
## collecting                                                                                                                  1
## cultivated                                                                                                                  1
## data                                                                                                                        1
## extend                                                                                                                      1
## fisheries                                                                                                                   1
## globally                                                                                                                    1
## map                                                                                                                         1
## preparedness                                                                                                                1
## purposes                                                                                                                    1
## ready                                                                                                                       1
## released                                                                                                                    1
## road                                                                                                                        1
## targeted                                                                                                                    1
## accelerator                                                                                                                 1
## allow                                                                                                                       1
## capped                                                                                                                      1
## cumulatively                                                                                                                1
## offered                                                                                                                     1
## proposals                                                                                                                   1
## reviewed                                                                                                                    1
## america                                                                                                                     1
## applied                                                                                                                     1
## canadians                                                                                                                   1
## credit                                                                                                                      1
## fueltype                                                                                                                    1
## kind                                                                                                                        1
## metric                                                                                                                      1
## middleincome                                                                                                                1
## purchase                                                                                                                    1
## rebated                                                                                                                     1
## solution                                                                                                                    1
## starting                                                                                                                    1
## taxes                                                                                                                       1
## ton                                                                                                                         1
## charging                                                                                                                    1
## deferring                                                                                                                   1
## electrifying                                                                                                                1
## expanding                                                                                                                   1
## installations                                                                                                               1
## passenger                                                                                                                   1
## previously                                                                                                                  1
## promises                                                                                                                    1
## promoting                                                                                                                   1
## pump                                                                                                                        1
## subsidizing                                                                                                                 1
## vehicles                                                                                                                    1
## world                                                                                                                       1
## zeroemission                                                                                                                1
## competitively                                                                                                               1
## final                                                                                                                       1
## leader                                                                                                                      1
## move                                                                                                                        1
## sections                                                                                                                    1
## rest                                                                                                                        1
## “inform                                                                                                                     1
## ”                                                                                                                           1
## analyzing                                                                                                                   1
## impacted                                                                                                                    1
## inform                                                                                                                      1
## understand                                                                                                                  1
## barometric                                                                                                                  1
## common                                                                                                                      1
## difference                                                                                                                  1
## distinguishing                                                                                                              1
## hourly                                                                                                                      1
## influences                                                                                                                  1
## recognize                                                                                                                   1
## seasonally                                                                                                                  1
## speed                                                                                                                       1
## start                                                                                                                       1
## statistical                                                                                                                 1
## variabilities                                                                                                               1
## vary                                                                                                                        1
## alternating                                                                                                                 1
## canada‘s                                                                                                                    1
## climatic                                                                                                                    1
## frostfree                                                                                                                   1
## lots                                                                                                                        1
## lowpressure                                                                                                                 1
## moderating                                                                                                                  1
## multiyear                                                                                                                   1
## periods                                                                                                                     1
## prevailing                                                                                                                  1
## rainfall                                                                                                                    1
## seasonal                                                                                                                    1
## warmest                                                                                                                     1
## west                                                                                                                        1
## winds                                                                                                                       1
## basins                                                                                                                      1
## block                                                                                                                       1
## columbia                                                                                                                    1
## coming                                                                                                                      1
## distance                                                                                                                    1
## distribute                                                                                                                  1
## eastern                                                                                                                     1
## elevation                                                                                                                   1
## exposure                                                                                                                    1
## gradient                                                                                                                    1
## great                                                                                                                       1
## islands                                                                                                                     1
## marine                                                                                                                      1
## masses                                                                                                                      1
## mild                                                                                                                        1
## northsouth                                                                                                                  1
## parallel                                                                                                                    1
## prairies                                                                                                                    1
## separated                                                                                                                   1
## afternoons                                                                                                                  1
## brings                                                                                                                      1
## driest                                                                                                                      1
## dryer                                                                                                                       1
## elevations                                                                                                                  1
## experiences                                                                                                                 1
## generating                                                                                                                  1
## higher                                                                                                                      1
## rainshadow                                                                                                                  1
## range                                                                                                                       1
## side                                                                                                                        1
## slopes                                                                                                                      1
## southcentral                                                                                                                1
## spring                                                                                                                      1
## thunderstorm                                                                                                                1
## valleybottoms                                                                                                               1
## valleys                                                                                                                     1
## westerly                                                                                                                    1
## wet                                                                                                                         1
## days                                                                                                                        1
## declared                                                                                                                    1
## dramatic                                                                                                                    1
## history                                                                                                                     1
## lives                                                                                                                       1
## longest                                                                                                                     1
## recordbreaking                                                                                                              1
## waves                                                                                                                       1
## wild                                                                                                                        1
## worst                                                                                                                       1
## floods                                                                                                                      1
## george                                                                                                                      1
## harbour                                                                                                                     1
## hot                                                                                                                         1
## june                                                                                                                        1
## lytton                                                                                                                      1
## prince                                                                                                                      1
## third                                                                                                                       1
## victoria                                                                                                                    1
## anything                                                                                                                    1
## etal                                                                                                                        1
## glaciers                                                                                                                    1
## mention                                                                                                                     1
## moisture                                                                                                                    1
## page                                                                                                                        1
## spittlehouse                                                                                                                1
## normals                                                                                                                     1
## compared                                                                                                                    1
## norm                                                                                                                        1
## year                                                                                                                        1
## max                                                                                                                         1
## min                                                                                                                         1
## norms                                                                                                                       1
## precip                                                                                                                      1
## temp                                                                                                                        1
## differ                                                                                                                      1
## mean                                                                                                                        1
## planetary                                                                                                                   1
## leading                                                                                                                     1
## jurisdiction                                                                                                                1
## actuaries                                                                                                                   1
## index                                                                                                                       1
## asterix                                                                                                                     1
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                        1
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                           1
## strength                                                                                                                    1
## forecast                                                                                                                    1
## modeled                                                                                                                     1
## prediction                                                                                                                  1
## projection                                                                                                                  1
## see                                                                                                                         1
## httpstwittercomthomasforbcstatuss                                                                                           1
## amount                                                                                                                      1
## drying                                                                                                                      1
## melt                                                                                                                        1
## persistence                                                                                                                 1
## snowpack                                                                                                                    1
## get                                                                                                                         1
## hotter                                                                                                                      1
## summers                                                                                                                     1
## trend                                                                                                                       1
## months                                                                                                                      1
## decadal                                                                                                                     1
## american                                                                                                                    1
## lifetime                                                                                                                    1
## pattern                                                                                                                     1
## amplified                                                                                                                   1
## coincided                                                                                                                   1
## cycles                                                                                                                      1
## series                                                                                                                      1
## imbalance                                                                                                                   1
## increases                                                                                                                   1
## keeping                                                                                                                     1
## relative                                                                                                                    1
## transfer                                                                                                                    1
## •                                                                                                                           1
## affects                                                                                                                     1
## heating                                                                                                                     1
## slowly                                                                                                                      1
## cumulative                                                                                                                  1
## deforestation                                                                                                               1
## esp                                                                                                                         1
## march                                                                                                                       1
## nitrous                                                                                                                     1
## oxide                                                                                                                       1
## httpsbritishcolumbiacombcweatherbc                                                                                          1
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                    1
## httpsopentextbccageographychapterclimateenvironmentbc                                                                       1
## httpsclimatechangecanadacabritishcolumbia                                                                                   1
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                         1
## guiding                                                                                                                     1
## makers                                                                                                                      1
## presented                                                                                                                   1
## scientists                                                                                                                  1
## considers                                                                                                                   1
## bc’                                                                                                                         1
## depends                                                                                                                     1
## grasslands                                                                                                                  1
## healthier                                                                                                                   1
## matter                                                                                                                      1
## nature                                                                                                                      1
## particulate                                                                                                                 1
## retention                                                                                                                   1
## shrubs                                                                                                                      1
## stored                                                                                                                      1
## zone                                                                                                                        1
## ‘beautiful                                                                                                                  1
## accessible                                                                                                                  1
## distributed                                                                                                                 1
## excluded                                                                                                                    1
## inclusive                                                                                                                   1
## inequality                                                                                                                  1
## multiple                                                                                                                    1
## reductions                                                                                                                  1
## spreading                                                                                                                   1
## thus                                                                                                                        1
## consultation                                                                                                                1
## diesel                                                                                                                      1
## generators                                                                                                                  1
## relations                                                                                                                   1
## reliance                                                                                                                    1
## develop                                                                                                                     1
## environments                                                                                                                1
## explore                                                                                                                     1
## inspired                                                                                                                    1
## lowemission                                                                                                                 1
## researchers                                                                                                                 1
## revitalized                                                                                                                 1
## skilled                                                                                                                     1
## smooth                                                                                                                      1
## student                                                                                                                     1
## chance                                                                                                                      1
## cycling                                                                                                                     1
## diversification                                                                                                             1
## managed                                                                                                                     1
## newly                                                                                                                       1
## nutrient                                                                                                                    1
## preservation                                                                                                                1
## purification                                                                                                                1
## recreation                                                                                                                  1
## rethink                                                                                                                     1
## spirituality                                                                                                                1
## stewardship                                                                                                                 1
## tissue                                                                                                                      1
## wildlife                                                                                                                    1
## woody                                                                                                                       1
## abound                                                                                                                      1
## contribution                                                                                                                1
## ensures                                                                                                                     1
## farming                                                                                                                     1
## importing                                                                                                                   1
## preserving                                                                                                                  1
## ranching                                                                                                                    1
## rebuilt                                                                                                                     1
## recently                                                                                                                    1
## reduces                                                                                                                     1
## reserve                                                                                                                     1
## destructive                                                                                                                 1
## environmentally                                                                                                             1
## preparing                                                                                                                   1
## reconstruct                                                                                                                 1
## thrive                                                                                                                      1
## zoning                                                                                                                      1
## cite                                                                                                                        1
## cleaning                                                                                                                    1
## covid                                                                                                                       1
## greatly                                                                                                                     1
## lockdown                                                                                                                    1
## looking                                                                                                                     1
## markets                                                                                                                     1
## pays                                                                                                                        1
## polluter                                                                                                                    1
## principle                                                                                                                   1
## providing                                                                                                                   1
## reassessing                                                                                                                 1
## reevaluate                                                                                                                  1
## something                                                                                                                   1
## try                                                                                                                         1
## interests                                                                                                                   1
## involves                                                                                                                    1
## myriad                                                                                                                      1
## detractors                                                                                                                  1
## measure                                                                                                                     1
## supporters                                                                                                                  1
## highlight                                                                                                                   1
## might                                                                                                                       1
## mitigated                                                                                                                   1
## overcome                                                                                                                    1
## ided                                                                                                                        1
## discuss                                                                                                                     1
## displaced                                                                                                                   1
## communicate                                                                                                                 1
## inspire                                                                                                                     1
## accepting                                                                                                                   1
## comes                                                                                                                       1
## continuing                                                                                                                  1
## directions                                                                                                                  1
## emit                                                                                                                        1
## expensive                                                                                                                   1
## inherent                                                                                                                    1
## paths                                                                                                                       1
## problem                                                                                                                     1
## relying                                                                                                                     1
## researching                                                                                                                 1
## simply                                                                                                                      1
## source                                                                                                                      1
## suggest                                                                                                                     1
## timelines                                                                                                                   1
## unproven                                                                                                                    1
## concerns                                                                                                                    1
## give                                                                                                                        1
## legitimate                                                                                                                  1
## oceans”                                                                                                                     1
## places                                                                                                                      1
## protect                                                                                                                     1
## raised                                                                                                                      1
## shellfish                                                                                                                   1
## shells                                                                                                                      1
## shortterm                                                                                                                   1
## “irreversible                                                                                                               1
## advisory                                                                                                                    1
## advocating                                                                                                                  1
## businesses                                                                                                                  1
## consumers                                                                                                                   1
## disabled                                                                                                                    1
## individual                                                                                                                  1
## member                                                                                                                      1
## missing                                                                                                                     1
## organizations                                                                                                               1
## poverty                                                                                                                     1
## seeking                                                                                                                     1
## accepted                                                                                                                    1
## declaration                                                                                                                 1
## departments                                                                                                                 1
## drip                                                                                                                        1
## engagement                                                                                                                  1
## forms                                                                                                                       1
## governance                                                                                                                  1
## hereditary                                                                                                                  1
## indian                                                                                                                      1
## lands                                                                                                                       1
## peoples                                                                                                                     1
## personnel                                                                                                                   1
## protocols                                                                                                                   1
## reservation                                                                                                                 1
## situated                                                                                                                    1
## territorial                                                                                                                 1
## treaties                                                                                                                    1
## decline                                                                                                                     1
## except                                                                                                                      1
## expansion                                                                                                                   1
## general                                                                                                                     1
## greenenergy                                                                                                                 1
## retirements                                                                                                                 1
## socioeconomic                                                                                                               1
## absorption                                                                                                                  1
## ecoservices                                                                                                                 1
## insect                                                                                                                      1
## pause                                                                                                                       1
## stressed                                                                                                                    1
## system                                                                                                                      1
## techniques                                                                                                                  1
## uncertainty                                                                                                                 1
## unsustainable                                                                                                               1
## addressed                                                                                                                   1
## alternate                                                                                                                   1
## became                                                                                                                      1
## grown                                                                                                                       1
## locally                                                                                                                     1
## prone                                                                                                                       1
## remain                                                                                                                      1
## toxins                                                                                                                      1
## adaption                                                                                                                    1
## anew                                                                                                                        1
## considered                                                                                                                  1
## expense                                                                                                                     1
## farm                                                                                                                        1
## income                                                                                                                      1
## infrastructure”                                                                                                             1
## lost                                                                                                                        1
## policies”                                                                                                                   1
## require                                                                                                                     1
## results                                                                                                                     1
## “ambitious                                                                                                                  1
## “systemic                                                                                                                   1
## comparisons                                                                                                                 1
## previous                                                                                                                    1
## conclusions                                                                                                                 1
## summaryconclude                                                                                                             1
## parts                                                                                                                       1
## open                                                                                                                        1
## paragraph                                                                                                                   1
## parti                                                                                                                       1
## along                                                                                                                       1
## demographic                                                                                                                 1
## varying                                                                                                                     1
## actor                                                                                                                       1
## pick                                                                                                                        1
## fulfillment                                                                                                                 1
## identification                                                                                                              1
## issue                                                                                                                       1
## suggested                                                                                                                   1
## actionoriented                                                                                                              1
## inclusion                                                                                                                   1
## practical                                                                                                                   1
## rationales                                                                                                                  1
## term                                                                                                                        1
## think                                                                                                                       1
## underway                                                                                                                    1
## factor                                                                                                                      1
## consideration                                                                                                               1
## number                                                                                                                      1
## order                                                                                                                       1
## posed                                                                                                                       1
## strategic                                                                                                                   1
## avoid                                                                                                                       1
## linealigned                                                                                                                 1
## sake                                                                                                                        1
## sure                                                                                                                        1
## thought                                                                                                                     1
## wise                                                                                                                        1
## appropriate                                                                                                                 1
## estate                                                                                                                      1
## extraction                                                                                                                  1
## real                                                                                                                        1
## restore                                                                                                                     1
## valuable                                                                                                                    1
## assure                                                                                                                      1
## fair                                                                                                                        1
## finance                                                                                                                     1
## industrial                                                                                                                  1
## just                                                                                                                        1
## supportive                                                                                                                  1
## green                                                                                                                       1
## process                                                                                                                     1
## relationships                                                                                                               1
## together                                                                                                                    1
## carbonfree                                                                                                                  1
## design                                                                                                                      1
## engineer                                                                                                                    1
## innovate                                                                                                                    1
## maintain                                                                                                                    1
## produce                                                                                                                     1
## train                                                                                                                       1
## transitioning                                                                                                               1
## young                                                                                                                       1
## capture                                                                                                                     1
## deciduous                                                                                                                   1
## diverse                                                                                                                     1
## effectively                                                                                                                 1
## firebreak                                                                                                                   1
## functions                                                                                                                   1
## mills                                                                                                                       1
## refit                                                                                                                       1
## smaller                                                                                                                     1
## tree                                                                                                                        1
## compliance                                                                                                                  1
## continuation                                                                                                                1
## enforcement                                                                                                                 1
## equipment                                                                                                                   1
## gaspowered                                                                                                                  1
## innovations                                                                                                                 1
## replace                                                                                                                     1
## demolishing                                                                                                                 1
## don’t                                                                                                                       1
## fireresiliency                                                                                                              1
## focus                                                                                                                       1
## restoring                                                                                                                   1
## risk                                                                                                                        1
## safe                                                                                                                        1
## structures                                                                                                                  1
## updating                                                                                                                    1
## exhaustive                                                                                                                  1
## ‘lens’                                                                                                                      1
## sense                                                                                                                       1
## urgency                                                                                                                     1
## ultimate                                                                                                                    1
## initiating                                                                                                                  1
## lead                                                                                                                        1
## market                                                                                                                      1
## initial                                                                                                                     1
## outline                                                                                                                     1
## refer                                                                                                                       1
## difference’                                                                                                                 1
## know                                                                                                                        1
## recognizing                                                                                                                 1
## ‘make                                                                                                                       1
## honour                                                                                                                      1
## reason                                                                                                                      1
## reports                                                                                                                     1
## taking                                                                                                                      1
## british                                                                                                                     1
## business                                                                                                                    1
## columbians                                                                                                                  1
## ensured                                                                                                                     1
## stewarding                                                                                                                  1
## unique                                                                                                                      1
## vibrant                                                                                                                     1

3.2 Wordcloud - 60 min frequency

# http://www.sthda.com/english/wiki/word-cloud-generator-in-r-one-killer-function-to-do-everything-you-need
source('http://www.sthda.com/upload/rquery_wordcloud.r')
wc <-rquery.wordcloud("EOS365-FinalProject-TextAnalysis.txt", 
                      type ="file", lang = "english", 
                      max.words = 10000, min.freq = 60,
                      colorPalette = "Set1")

wc
## $tdm
## <<TermDocumentMatrix (terms: 1282, documents: 333)>>
## Non-/sparse entries: 2969/423937
## Sparsity           : 99%
## Maximal term length: 120
## Weighting          : term frequency (tf)
## 
## $freqTable
##                                                                                                                                                                                                                                              word
## climate                                                                                                                                                                                                                                   climate
## emissions                                                                                                                                                                                                                               emissions
## bc’s                                                                                                                                                                                                                                         bc’s
## will                                                                                                                                                                                                                                         will
## change                                                                                                                                                                                                                                     change
## reduce                                                                                                                                                                                                                                     reduce
## carbon                                                                                                                                                                                                                                     carbon
## help                                                                                                                                                                                                                                         help
## regions                                                                                                                                                                                                                                   regions
## ghg                                                                                                                                                                                                                                           ghg
## action                                                                                                                                                                                                                                     action
## future                                                                                                                                                                                                                                     future
## indigenous                                                                                                                                                                                                                             indigenous
## challenges                                                                                                                                                                                                                             challenges
## weather                                                                                                                                                                                                                                   weather
## temperature                                                                                                                                                                                                                           temperature
## also                                                                                                                                                                                                                                         also
## industry                                                                                                                                                                                                                                 industry
## opportunity                                                                                                                                                                                                                           opportunity
## changing                                                                                                                                                                                                                                 changing
## social                                                                                                                                                                                                                                     social
## economic                                                                                                                                                                                                                                 economic
## building                                                                                                                                                                                                                                 building
## opportunities                                                                                                                                                                                                                       opportunities
## recommendations                                                                                                                                                                                                                   recommendations
## new                                                                                                                                                                                                                                           new
## mitigation                                                                                                                                                                                                                             mitigation
## gas                                                                                                                                                                                                                                           gas
## including                                                                                                                                                                                                                               including
## paris                                                                                                                                                                                                                                       paris
## provincial                                                                                                                                                                                                                             provincial
## canada’s                                                                                                                                                                                                                                 canada’s
## land                                                                                                                                                                                                                                         land
## development                                                                                                                                                                                                                           development
## energy                                                                                                                                                                                                                                     energy
## reducing                                                                                                                                                                                                                                 reducing
## words                                                                                                                                                                                                                                       words
## –                                                                                                                                                                                                                                               –
## can                                                                                                                                                                                                                                           can
## strategies                                                                                                                                                                                                                             strategies
## global                                                                                                                                                                                                                                     global
## increased                                                                                                                                                                                                                               increased
## agriculture                                                                                                                                                                                                                           agriculture
## natural                                                                                                                                                                                                                                   natural
## need                                                                                                                                                                                                                                         need
## skills                                                                                                                                                                                                                                     skills
## recommendation                                                                                                                                                                                                                     recommendation
## food                                                                                                                                                                                                                                         food
## supporting                                                                                                                                                                                                                             supporting
## changes                                                                                                                                                                                                                                   changes
## challenge                                                                                                                                                                                                                               challenge
## forests                                                                                                                                                                                                                                   forests
## communities                                                                                                                                                                                                                           communities
## adaptation                                                                                                                                                                                                                             adaptation
## clean                                                                                                                                                                                                                                       clean
## technology                                                                                                                                                                                                                             technology
## benefits                                                                                                                                                                                                                                 benefits
## provide                                                                                                                                                                                                                                   provide
## events                                                                                                                                                                                                                                     events
## different                                                                                                                                                                                                                               different
## people                                                                                                                                                                                                                                     people
## political                                                                                                                                                                                                                               political
## ipcc                                                                                                                                                                                                                                         ipcc
## growth                                                                                                                                                                                                                                     growth
## region                                                                                                                                                                                                                                     region
## interior                                                                                                                                                                                                                                 interior
## buildings                                                                                                                                                                                                                               buildings
## oil                                                                                                                                                                                                                                           oil
## transportation                                                                                                                                                                                                                     transportation
## protecting                                                                                                                                                                                                                             protecting
## training                                                                                                                                                                                                                                 training
## agreement                                                                                                                                                                                                                               agreement
## integrity                                                                                                                                                                                                                               integrity
## well                                                                                                                                                                                                                                         well
## section                                                                                                                                                                                                                                   section
## extreme                                                                                                                                                                                                                                   extreme
## air                                                                                                                                                                                                                                           air
## environmental                                                                                                                                                                                                                       environmental
## needs                                                                                                                                                                                                                                       needs
## support                                                                                                                                                                                                                                   support
## ocean                                                                                                                                                                                                                                       ocean
## biodiversity                                                                                                                                                                                                                         biodiversity
## include                                                                                                                                                                                                                                   include
## increasing                                                                                                                                                                                                                             increasing
## first                                                                                                                                                                                                                                       first
## urgent                                                                                                                                                                                                                                     urgent
## commitments                                                                                                                                                                                                                           commitments
## capacity                                                                                                                                                                                                                                 capacity
## security                                                                                                                                                                                                                                 security
## ecological                                                                                                                                                                                                                             ecological
## lowcarbon                                                                                                                                                                                                                               lowcarbon
## atmospheric                                                                                                                                                                                                                           atmospheric
## services                                                                                                                                                                                                                                 services
## analysis                                                                                                                                                                                                                                 analysis
## report                                                                                                                                                                                                                                     report
## cleanbc                                                                                                                                                                                                                                   cleanbc
## ndc                                                                                                                                                                                                                                           ndc
## mountains                                                                                                                                                                                                                               mountains
## regional                                                                                                                                                                                                                                 regional
## groups                                                                                                                                                                                                                                     groups
## north                                                                                                                                                                                                                                       north
## potential                                                                                                                                                                                                                               potential
## coastal                                                                                                                                                                                                                                   coastal
## adapt                                                                                                                                                                                                                                       adapt
## commitment                                                                                                                                                                                                                             commitment
## past                                                                                                                                                                                                                                         past
## since                                                                                                                                                                                                                                       since
## climates                                                                                                                                                                                                                                 climates
## find                                                                                                                                                                                                                                         find
## levels                                                                                                                                                                                                                                     levels
## °c                                                                                                                                                                                                                                             °c
## temperatures                                                                                                                                                                                                                         temperatures
## years                                                                                                                                                                                                                                       years
## ensuring                                                                                                                                                                                                                                 ensuring
## equity                                                                                                                                                                                                                                     equity
## precipitation                                                                                                                                                                                                                       precipitation
## summary                                                                                                                                                                                                                                   summary
## systems                                                                                                                                                                                                                                   systems
## century                                                                                                                                                                                                                                   century
## incorporate                                                                                                                                                                                                                           incorporate
## solutions                                                                                                                                                                                                                               solutions
## water                                                                                                                                                                                                                                       water
## ensure                                                                                                                                                                                                                                     ensure
## important                                                                                                                                                                                                                               important
## accord                                                                                                                                                                                                                                     accord
## address                                                                                                                                                                                                                                   address
## canada                                                                                                                                                                                                                                     canada
## impacts                                                                                                                                                                                                                                   impacts
## international                                                                                                                                                                                                                       international
## warming                                                                                                                                                                                                                                   warming
## pacific                                                                                                                                                                                                                                   pacific
## province                                                                                                                                                                                                                                 province
## south                                                                                                                                                                                                                                       south
## health                                                                                                                                                                                                                                     health
## population                                                                                                                                                                                                                             population
## result                                                                                                                                                                                                                                     result
## though                                                                                                                                                                                                                                     though
## within                                                                                                                                                                                                                                     within
## forestry                                                                                                                                                                                                                                 forestry
## key                                                                                                                                                                                                                                           key
## sectors                                                                                                                                                                                                                                   sectors
## actions                                                                                                                                                                                                                                   actions
## continue                                                                                                                                                                                                                                 continue
## local                                                                                                                                                                                                                                       local
## based                                                                                                                                                                                                                                       based
## flooding                                                                                                                                                                                                                                 flooding
## canadian                                                                                                                                                                                                                                 canadian
## goals                                                                                                                                                                                                                                       goals
## time                                                                                                                                                                                                                                         time
## jobs                                                                                                                                                                                                                                         jobs
## economy                                                                                                                                                                                                                                   economy
## forest                                                                                                                                                                                                                                     forest
## fulfill                                                                                                                                                                                                                                   fulfill
## reduction                                                                                                                                                                                                                               reduction
## innovative                                                                                                                                                                                                                             innovative
## mitigate                                                                                                                                                                                                                                 mitigate
## policy                                                                                                                                                                                                                                     policy
## trees                                                                                                                                                                                                                                       trees
## become                                                                                                                                                                                                                                     become
## work                                                                                                                                                                                                                                         work
## make                                                                                                                                                                                                                                         make
## communication                                                                                                                                                                                                                       communication
## copied                                                                                                                                                                                                                                     copied
## edited                                                                                                                                                                                                                                     edited
## managing                                                                                                                                                                                                                                 managing
## still                                                                                                                                                                                                                                       still
## part                                                                                                                                                                                                                                         part
## contribute                                                                                                                                                                                                                             contribute
## live                                                                                                                                                                                                                                         live
## respond                                                                                                                                                                                                                                   respond
## accelerated                                                                                                                                                                                                                           accelerated
## plan                                                                                                                                                                                                                                         plan
## area                                                                                                                                                                                                                                         area
## mountain                                                                                                                                                                                                                                 mountain
## northern                                                                                                                                                                                                                                 northern
## total                                                                                                                                                                                                                                       total
## creating                                                                                                                                                                                                                                 creating
## districts                                                                                                                                                                                                                               districts
## high                                                                                                                                                                                                                                         high
## use                                                                                                                                                                                                                                           use
## increase                                                                                                                                                                                                                                 increase
## less                                                                                                                                                                                                                                         less
## may                                                                                                                                                                                                                                           may
## projected                                                                                                                                                                                                                               projected
## workers                                                                                                                                                                                                                                   workers
## central                                                                                                                                                                                                                                   central
## experienced                                                                                                                                                                                                                           experienced
## coast                                                                                                                                                                                                                                       coast
## gdp                                                                                                                                                                                                                                           gdp
## government                                                                                                                                                                                                                             government
## recent                                                                                                                                                                                                                                     recent
## financial                                                                                                                                                                                                                               financial
## recovery                                                                                                                                                                                                                                 recovery
## wildfire                                                                                                                                                                                                                                 wildfire
## balance                                                                                                                                                                                                                                   balance
## healthy                                                                                                                                                                                                                                   healthy
## rise                                                                                                                                                                                                                                         rise
## effects                                                                                                                                                                                                                                   effects
## knowledge                                                                                                                                                                                                                               knowledge
## resilience                                                                                                                                                                                                                             resilience
## traditional                                                                                                                                                                                                                           traditional
## competitive                                                                                                                                                                                                                           competitive
## emission                                                                                                                                                                                                                                 emission
## encourage                                                                                                                                                                                                                               encourage
## fuel                                                                                                                                                                                                                                         fuel
## tax                                                                                                                                                                                                                                           tax
## costs                                                                                                                                                                                                                                       costs
## sector                                                                                                                                                                                                                                     sector
## workforce                                                                                                                                                                                                                               workforce
## becoming                                                                                                                                                                                                                                 becoming
## patterns                                                                                                                                                                                                                                 patterns
## period                                                                                                                                                                                                                                     period
## summer                                                                                                                                                                                                                                     summer
## winter                                                                                                                                                                                                                                     winter
## cold                                                                                                                                                                                                                                         cold
## warm                                                                                                                                                                                                                                         warm
## wetter                                                                                                                                                                                                                                     wetter
## fires                                                                                                                                                                                                                                       fires
## observed                                                                                                                                                                                                                                 observed
## look                                                                                                                                                                                                                                         look
## lecture                                                                                                                                                                                                                                   lecture
##                                                                                                                                                                                                                                                
## methane                                                                                                                                                                                                                                   methane
## offer                                                                                                                                                                                                                                       offer
## build                                                                                                                                                                                                                                       build
## rebuilding                                                                                                                                                                                                                             rebuilding
## way                                                                                                                                                                                                                                           way
## intro                                                                                                                                                                                                                                       intro
## background                                                                                                                                                                                                                             background
## developing                                                                                                                                                                                                                             developing
## geographic                                                                                                                                                                                                                             geographic
## includes                                                                                                                                                                                                                                 includes
## industries                                                                                                                                                                                                                             industries
## information                                                                                                                                                                                                                           information
## used                                                                                                                                                                                                                                         used
## created                                                                                                                                                                                                                                   created
## dioxide                                                                                                                                                                                                                                   dioxide
## earth’s                                                                                                                                                                                                                                   earth’s
## issues                                                                                                                                                                                                                                     issues
## obligations                                                                                                                                                                                                                           obligations
## roadmap                                                                                                                                                                                                                                   roadmap
## crown                                                                                                                                                                                                                                       crown
## east                                                                                                                                                                                                                                         east
## hectares                                                                                                                                                                                                                                 hectares
## million                                                                                                                                                                                                                                   million
## ranges                                                                                                                                                                                                                                     ranges
## western                                                                                                                                                                                                                                   western
## biogeoclimatic                                                                                                                                                                                                                     biogeoclimatic
## manage                                                                                                                                                                                                                                     manage
## vegetation                                                                                                                                                                                                                             vegetation
## demographics                                                                                                                                                                                                                         demographics
## areas                                                                                                                                                                                                                                       areas
## territories                                                                                                                                                                                                                           territories
## dry                                                                                                                                                                                                                                           dry
## geography                                                                                                                                                                                                                               geography
## construction                                                                                                                                                                                                                         construction
## logging                                                                                                                                                                                                                                   logging
## prior                                                                                                                                                                                                                                       prior
## rights                                                                                                                                                                                                                                     rights
## cpas                                                                                                                                                                                                                                         cpas
## following                                                                                                                                                                                                                               following
## infrastructure                                                                                                                                                                                                                     infrastructure
## nations                                                                                                                                                                                                                                   nations
## next                                                                                                                                                                                                                                         next
## plans                                                                                                                                                                                                                                       plans
## policies                                                                                                                                                                                                                                 policies
## targets                                                                                                                                                                                                                                   targets
## affordable                                                                                                                                                                                                                             affordable
## innovation                                                                                                                                                                                                                             innovation
## keep                                                                                                                                                                                                                                         keep
## limit                                                                                                                                                                                                                                       limit
## made                                                                                                                                                                                                                                         made
## preindustrial                                                                                                                                                                                                                       preindustrial
## production                                                                                                                                                                                                                             production
## sustainable                                                                                                                                                                                                                           sustainable
## every                                                                                                                                                                                                                                       every
## reduced                                                                                                                                                                                                                                   reduced
## education                                                                                                                                                                                                                               education
## encouraging                                                                                                                                                                                                                           encouraging
## equitable                                                                                                                                                                                                                               equitable
## experience                                                                                                                                                                                                                             experience
## incorporating                                                                                                                                                                                                                       incorporating
## learning                                                                                                                                                                                                                                 learning
## taken                                                                                                                                                                                                                                       taken
## creation                                                                                                                                                                                                                                 creation
## goal                                                                                                                                                                                                                                         goal
## homes                                                                                                                                                                                                                                       homes
## increasingly                                                                                                                                                                                                                         increasingly
## per                                                                                                                                                                                                                                           per
## pollution                                                                                                                                                                                                                               pollution
## beyond                                                                                                                                                                                                                                     beyond
## community                                                                                                                                                                                                                               community
## create                                                                                                                                                                                                                                     create
## ecosystem                                                                                                                                                                                                                               ecosystem
## helping                                                                                                                                                                                                                                   helping
## strategy                                                                                                                                                                                                                                 strategy
## technologies                                                                                                                                                                                                                         technologies
## fund                                                                                                                                                                                                                                         fund
## projects                                                                                                                                                                                                                                 projects
## research                                                                                                                                                                                                                                 research
## incentives                                                                                                                                                                                                                             incentives
## large                                                                                                                                                                                                                                       large
## heat                                                                                                                                                                                                                                         heat
## continues                                                                                                                                                                                                                               continues
## present                                                                                                                                                                                                                                   present
## variations                                                                                                                                                                                                                             variations
## averages                                                                                                                                                                                                                                 averages
## duration                                                                                                                                                                                                                                 duration
## wind                                                                                                                                                                                                                                         wind
## associated                                                                                                                                                                                                                             associated
## atmosphere                                                                                                                                                                                                                             atmosphere
## circulation                                                                                                                                                                                                                           circulation
## flow                                                                                                                                                                                                                                         flow
## good                                                                                                                                                                                                                                         good
## long                                                                                                                                                                                                                                         long
## season                                                                                                                                                                                                                                     season
## agricultural                                                                                                                                                                                                                         agricultural
## drought                                                                                                                                                                                                                                   drought
## emergency                                                                                                                                                                                                                               emergency
## november                                                                                                                                                                                                                                 november
## resulting                                                                                                                                                                                                                               resulting
## locations                                                                                                                                                                                                                               locations
## record                                                                                                                                                                                                                                     record
## recorded                                                                                                                                                                                                                                 recorded
## average                                                                                                                                                                                                                                   average
## current                                                                                                                                                                                                                                   current
## environment                                                                                                                                                                                                                           environment
## trends                                                                                                                                                                                                                                     trends
## summarize                                                                                                                                                                                                                               summarize
## check                                                                                                                                                                                                                                       check
## oscillation                                                                                                                                                                                                                           oscillation
## effect                                                                                                                                                                                                                                     effect
## ability                                                                                                                                                                                                                                   ability
## species                                                                                                                                                                                                                                   species
## landuse                                                                                                                                                                                                                                   landuse
## already                                                                                                                                                                                                                                   already
## developed                                                                                                                                                                                                                               developed
## creative                                                                                                                                                                                                                                 creative
## affect                                                                                                                                                                                                                                     affect
## nature’s                                                                                                                                                                                                                                 nature’s
## addressing                                                                                                                                                                                                                             addressing
## growing                                                                                                                                                                                                                                   growing
## transition                                                                                                                                                                                                                             transition
## instead                                                                                                                                                                                                                                   instead
## ways                                                                                                                                                                                                                                         ways
## codes                                                                                                                                                                                                                                       codes
## quality                                                                                                                                                                                                                                   quality
## plant                                                                                                                                                                                                                                       plant
## led                                                                                                                                                                                                                                           led
## introduction                                                                                                                                                                                                                         introduction
## brief                                                                                                                                                                                                                                       brief
## description                                                                                                                                                                                                                           description
## economically                                                                                                                                                                                                                         economically
## offers                                                                                                                                                                                                                                     offers
## due                                                                                                                                                                                                                                           due
## especially                                                                                                                                                                                                                             especially
## intergovernmental                                                                                                                                                                                                               intergovernmental
## panel                                                                                                                                                                                                                                       panel
## pathways                                                                                                                                                                                                                                 pathways
## required                                                                                                                                                                                                                                 required
## border                                                                                                                                                                                                                                     border
## rocky                                                                                                                                                                                                                                       rocky
## authorities                                                                                                                                                                                                                           authorities
## census                                                                                                                                                                                                                                     census
## ecosystems                                                                                                                                                                                                                             ecosystems
## geopolitical                                                                                                                                                                                                                         geopolitical
## macroclimate                                                                                                                                                                                                                         macroclimate
## municipalities                                                                                                                                                                                                                     municipalities
## school                                                                                                                                                                                                                                     school
## subdivisions                                                                                                                                                                                                                         subdivisions
## zones                                                                                                                                                                                                                                       zones
## ages                                                                                                                                                                                                                                         ages
## depending                                                                                                                                                                                                                               depending
## fewer                                                                                                                                                                                                                                       fewer
## migration                                                                                                                                                                                                                               migration
## senior                                                                                                                                                                                                                                     senior
## cities                                                                                                                                                                                                                                     cities
## mostly                                                                                                                                                                                                                                     mostly
## nation                                                                                                                                                                                                                                     nation
## rural                                                                                                                                                                                                                                       rural
## towns                                                                                                                                                                                                                                       towns
## villages                                                                                                                                                                                                                                 villages
## cariboo                                                                                                                                                                                                                                   cariboo
## mining                                                                                                                                                                                                                                     mining
## plateau                                                                                                                                                                                                                                   plateau
## private                                                                                                                                                                                                                                   private
## remote                                                                                                                                                                                                                                     remote
## specific                                                                                                                                                                                                                                 specific
## tourism                                                                                                                                                                                                                                   tourism
## contributes                                                                                                                                                                                                                           contributes
## consent                                                                                                                                                                                                                                   consent
## examples                                                                                                                                                                                                                                 examples
## forward                                                                                                                                                                                                                                   forward
## free                                                                                                                                                                                                                                         free
## informed                                                                                                                                                                                                                                 informed
## much                                                                                                                                                                                                                                         much
## oldgrowth                                                                                                                                                                                                                               oldgrowth
## subsidies                                                                                                                                                                                                                               subsidies
## territory                                                                                                                                                                                                                               territory
## unceded                                                                                                                                                                                                                                   unceded
## accomplishments                                                                                                                                                                                                                   accomplishments
## agreements                                                                                                                                                                                                                             agreements
## backdrop                                                                                                                                                                                                                                 backdrop
## budget                                                                                                                                                                                                                                     budget
## election                                                                                                                                                                                                                                 election
## federal                                                                                                                                                                                                                                   federal
## liberal                                                                                                                                                                                                                                   liberal
## majority                                                                                                                                                                                                                                 majority
## making                                                                                                                                                                                                                                     making
## management                                                                                                                                                                                                                             management
## minority                                                                                                                                                                                                                                 minority
## responsibilities                                                                                                                                                                                                                 responsibilities
## reviewing                                                                                                                                                                                                                               reviewing
## speech                                                                                                                                                                                                                                     speech
## throne                                                                                                                                                                                                                                     throne
## equality                                                                                                                                                                                                                                 equality
## netzero                                                                                                                                                                                                                                   netzero
## ppm                                                                                                                                                                                                                                           ppm
## states                                                                                                                                                                                                                                     states
## contributions                                                                                                                                                                                                                       contributions
## c°                                                                                                                                                                                                                                             c°
## determined                                                                                                                                                                                                                             determined
## nationally                                                                                                                                                                                                                             nationally
## rising                                                                                                                                                                                                                                     rising
## ambitious                                                                                                                                                                                                                               ambitious
## balancing                                                                                                                                                                                                                               balancing
## considering                                                                                                                                                                                                                           considering
## effective                                                                                                                                                                                                                               effective
## monitoring                                                                                                                                                                                                                             monitoring
## participation                                                                                                                                                                                                                       participation
## public                                                                                                                                                                                                                                     public
## rapidly                                                                                                                                                                                                                                   rapidly
## risks                                                                                                                                                                                                                                       risks
## scientific                                                                                                                                                                                                                             scientific
## technological                                                                                                                                                                                                                       technological
## vulnerable                                                                                                                                                                                                                             vulnerable
## adapting                                                                                                                                                                                                                                 adapting
## advantage                                                                                                                                                                                                                               advantage
## job                                                                                                                                                                                                                                           job
## pricing                                                                                                                                                                                                                                   pricing
## waste                                                                                                                                                                                                                                       waste
## economics                                                                                                                                                                                                                               economics
## low                                                                                                                                                                                                                                           low
## negative                                                                                                                                                                                                                                 negative
## partnerships                                                                                                                                                                                                                         partnerships
## consumer                                                                                                                                                                                                                                 consumer
## fossil                                                                                                                                                                                                                                     fossil
## introduced                                                                                                                                                                                                                             introduced
## lower                                                                                                                                                                                                                                       lower
## revenue                                                                                                                                                                                                                                   revenue
## efficient                                                                                                                                                                                                                               efficient
## electric                                                                                                                                                                                                                                 electric
## existing                                                                                                                                                                                                                                 existing
## old                                                                                                                                                                                                                                           old
## retrofitting                                                                                                                                                                                                                         retrofitting
## direct                                                                                                                                                                                                                                     direct
## obvious                                                                                                                                                                                                                                   obvious
## quest                                                                                                                                                                                                                                       quest
## take                                                                                                                                                                                                                                         take
## towards                                                                                                                                                                                                                                   towards
## factors                                                                                                                                                                                                                                   factors
## many                                                                                                                                                                                                                                         many
## clouds                                                                                                                                                                                                                                     clouds
## conditions                                                                                                                                                                                                                             conditions
## daily                                                                                                                                                                                                                                       daily
## direction                                                                                                                                                                                                                               direction
## extremes                                                                                                                                                                                                                                 extremes
## intensity                                                                                                                                                                                                                               intensity
## like                                                                                                                                                                                                                                         like
## normal                                                                                                                                                                                                                                     normal
## place                                                                                                                                                                                                                                       place
## pressure                                                                                                                                                                                                                                 pressure
## cycle                                                                                                                                                                                                                                       cycle
## highpressure                                                                                                                                                                                                                         highpressure
## influence                                                                                                                                                                                                                               influence
## influenced                                                                                                                                                                                                                             influenced
## largescale                                                                                                                                                                                                                             largescale
## maritime                                                                                                                                                                                                                                 maritime
## niño                                                                                                                                                                                                                                         niño
## small                                                                                                                                                                                                                                       small
## continental                                                                                                                                                                                                                           continental
## latitude                                                                                                                                                                                                                                 latitude
## moderate                                                                                                                                                                                                                                 moderate
## plains                                                                                                                                                                                                                                     plains
## plateaus                                                                                                                                                                                                                                 plateaus
## southern                                                                                                                                                                                                                                 southern
## varies                                                                                                                                                                                                                                     varies
## activity                                                                                                                                                                                                                                 activity
## arctic                                                                                                                                                                                                                                     arctic
## early                                                                                                                                                                                                                                       early
## largest                                                                                                                                                                                                                                   largest
## snow                                                                                                                                                                                                                                         snow
## burning                                                                                                                                                                                                                                   burning
## day                                                                                                                                                                                                                                           day
## fertile                                                                                                                                                                                                                                   fertile
## fire                                                                                                                                                                                                                                         fire
## frequency                                                                                                                                                                                                                               frequency
## human                                                                                                                                                                                                                                       human
## impact                                                                                                                                                                                                                                     impact
## one                                                                                                                                                                                                                                           one
## prairie                                                                                                                                                                                                                                   prairie
## rain                                                                                                                                                                                                                                         rain
## river                                                                                                                                                                                                                                       river
## state                                                                                                                                                                                                                                       state
## sumas                                                                                                                                                                                                                                       sumas
## values                                                                                                                                                                                                                                     values
## december                                                                                                                                                                                                                                 december
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf
## variability                                                                                                                                                                                                                           variability
## drier                                                                                                                                                                                                                                       drier
## last                                                                                                                                                                                                                                         last
## systemic                                                                                                                                                                                                                                 systemic
## maps                                                                                                                                                                                                                                         maps
## material                                                                                                                                                                                                                                 material
## expectations                                                                                                                                                                                                                         expectations
## module                                                                                                                                                                                                                                     module
## notes                                                                                                                                                                                                                                       notes
## slide                                                                                                                                                                                                                                       slide
## longterm                                                                                                                                                                                                                                 longterm
## oceans                                                                                                                                                                                                                                     oceans
## stabilize                                                                                                                                                                                                                               stabilize
## acidic                                                                                                                                                                                                                                     acidic
## habitat                                                                                                                                                                                                                                   habitat
## adaptive                                                                                                                                                                                                                                 adaptive
## vulnerabilities                                                                                                                                                                                                                   vulnerabilities
## pages                                                                                                                                                                                                                                       pages
## necessary                                                                                                                                                                                                                               necessary
## themes                                                                                                                                                                                                                                     themes
## wetlands                                                                                                                                                                                                                                 wetlands
## across                                                                                                                                                                                                                                     across
## often                                                                                                                                                                                                                                       often
## populations                                                                                                                                                                                                                           populations
## representative                                                                                                                                                                                                                     representative
## ministry                                                                                                                                                                                                                                 ministry
## reconciliation                                                                                                                                                                                                                     reconciliation
## sources                                                                                                                                                                                                                                   sources
## youth                                                                                                                                                                                                                                       youth
## cleanenergy                                                                                                                                                                                                                           cleanenergy
## employment                                                                                                                                                                                                                             employment
## force                                                                                                                                                                                                                                       force
## remove                                                                                                                                                                                                                                     remove
## resource                                                                                                                                                                                                                                 resource
## soil                                                                                                                                                                                                                                         soil
## storage                                                                                                                                                                                                                                   storage
## store                                                                                                                                                                                                                                       store
## timber                                                                                                                                                                                                                                     timber
## farms                                                                                                                                                                                                                                       farms
## flooded                                                                                                                                                                                                                                   flooded
## fraser                                                                                                                                                                                                                                     fraser
## legislation                                                                                                                                                                                                                           legislation
## manure                                                                                                                                                                                                                                     manure
## valley                                                                                                                                                                                                                                     valley
## flood                                                                                                                                                                                                                                       flood
## preserve                                                                                                                                                                                                                                 preserve
## resources                                                                                                                                                                                                                               resources
## bold                                                                                                                                                                                                                                         bold
## exists                                                                                                                                                                                                                                     exists
## invest                                                                                                                                                                                                                                     invest
## competing                                                                                                                                                                                                                               competing
## advice                                                                                                                                                                                                                                     advice
## meet                                                                                                                                                                                                                                         meet
## track                                                                                                                                                                                                                                       track
## causing                                                                                                                                                                                                                                   causing
## damage                                                                                                                                                                                                                                     damage
## protests                                                                                                                                                                                                                                 protests
## affordability                                                                                                                                                                                                                       affordability
## consider                                                                                                                                                                                                                                 consider
## council                                                                                                                                                                                                                                   council
## chiefs                                                                                                                                                                                                                                     chiefs
## continued                                                                                                                                                                                                                               continued
## ongoing                                                                                                                                                                                                                                   ongoing
## without                                                                                                                                                                                                                                   without
## rebuild                                                                                                                                                                                                                                   rebuild
## using                                                                                                                                                                                                                                       using
## list                                                                                                                                                                                                                                         list
## foster                                                                                                                                                                                                                                     foster
## …                                                                                                                                                                                                                                               …
## needed                                                                                                                                                                                                                                     needed
## conclusion                                                                                                                                                                                                                             conclusion
## cabinet                                                                                                                                                                                                                                   cabinet
## confidential                                                                                                                                                                                                                         confidential
## considerations                                                                                                                                                                                                                     considerations
## discussion                                                                                                                                                                                                                             discussion
## tool                                                                                                                                                                                                                                         tool
## vastly                                                                                                                                                                                                                                     vastly
## activities                                                                                                                                                                                                                             activities
## cause                                                                                                                                                                                                                                       cause
## cooperation                                                                                                                                                                                                                           cooperation
## greenhouse                                                                                                                                                                                                                             greenhouse
## humanrelated                                                                                                                                                                                                                         humanrelated
## lessen                                                                                                                                                                                                                                     lessen
## national                                                                                                                                                                                                                                 national
## outlined                                                                                                                                                                                                                                 outlined
## reported                                                                                                                                                                                                                                 reported
## signed                                                                                                                                                                                                                                     signed
## surface                                                                                                                                                                                                                                   surface
## alberta                                                                                                                                                                                                                                   alberta
## boreal                                                                                                                                                                                                                                     boreal
## coastline                                                                                                                                                                                                                               coastline
## rugged                                                                                                                                                                                                                                     rugged
## stretching                                                                                                                                                                                                                             stretching
## usa                                                                                                                                                                                                                                           usa
## categories                                                                                                                                                                                                                             categories
## distinct                                                                                                                                                                                                                                 distinct
## divided                                                                                                                                                                                                                                   divided
## divisions                                                                                                                                                                                                                               divisions
## numerous                                                                                                                                                                                                                                 numerous
## phsyiographic                                                                                                                                                                                                                       phsyiographic
## plus                                                                                                                                                                                                                                         plus
## similar                                                                                                                                                                                                                                   similar
## subareas                                                                                                                                                                                                                                 subareas
## useful                                                                                                                                                                                                                                     useful
## variety                                                                                                                                                                                                                                   variety
## aging                                                                                                                                                                                                                                       aging
## births                                                                                                                                                                                                                                     births
## deaths                                                                                                                                                                                                                                     deaths
## decrease                                                                                                                                                                                                                                 decrease
## interprovincial                                                                                                                                                                                                                   interprovincial
## now                                                                                                                                                                                                                                           now
## passed                                                                                                                                                                                                                                     passed
## populace                                                                                                                                                                                                                                 populace
## retire                                                                                                                                                                                                                                     retire
## shows                                                                                                                                                                                                                                       shows
## slightly                                                                                                                                                                                                                                 slightly
## stats                                                                                                                                                                                                                                       stats
## working                                                                                                                                                                                                                                   working
## age                                                                                                                                                                                                                                           age
## comprise                                                                                                                                                                                                                                 comprise
## least                                                                                                                                                                                                                                       least
## okanagan                                                                                                                                                                                                                                 okanagan
## reserves                                                                                                                                                                                                                                 reserves
## urban                                                                                                                                                                                                                                       urban
## younger                                                                                                                                                                                                                                   younger
## cover                                                                                                                                                                                                                                       cover
## culture                                                                                                                                                                                                                                   culture
## drivers                                                                                                                                                                                                                                   drivers
## iii                                                                                                                                                                                                                                           iii
## island                                                                                                                                                                                                                                     island
## kootenay                                                                                                                                                                                                                                 kootenay
## mainland                                                                                                                                                                                                                                 mainland
## nechako                                                                                                                                                                                                                                   nechako
## northeast                                                                                                                                                                                                                               northeast
## occur                                                                                                                                                                                                                                       occur
## occurs                                                                                                                                                                                                                                     occurs
## pipelines                                                                                                                                                                                                                               pipelines
## southwest                                                                                                                                                                                                                               southwest
## thompsonokanagan                                                                                                                                                                                                                 thompsonokanagan
## utilities                                                                                                                                                                                                                               utilities
## vancouver                                                                                                                                                                                                                               vancouver
## decreasing                                                                                                                                                                                                                             decreasing
## domestic                                                                                                                                                                                                                                 domestic
## emitting                                                                                                                                                                                                                                 emitting
## gross                                                                                                                                                                                                                                       gross
## hydro                                                                                                                                                                                                                                       hydro
## manufacturing                                                                                                                                                                                                                       manufacturing
## megatons                                                                                                                                                                                                                                 megatons
## product                                                                                                                                                                                                                                   product
## service                                                                                                                                                                                                                                   service
## acceptance                                                                                                                                                                                                                             acceptance
## access                                                                                                                                                                                                                                     access
## authority                                                                                                                                                                                                                               authority
## citizens                                                                                                                                                                                                                                 citizens
## creek                                                                                                                                                                                                                                       creek
## decisionmaking                                                                                                                                                                                                                     decisionmaking
## exercise                                                                                                                                                                                                                                 exercise
## expected                                                                                                                                                                                                                                 expected
## fairy                                                                                                                                                                                                                                       fairy
## gaslink                                                                                                                                                                                                                                   gaslink
## going                                                                                                                                                                                                                                       going
## landscape                                                                                                                                                                                                                               landscape
## pipeline                                                                                                                                                                                                                                 pipeline
## protest                                                                                                                                                                                                                                   protest
## protocol                                                                                                                                                                                                                                 protocol
## right                                                                                                                                                                                                                                       right
## undrip                                                                                                                                                                                                                                     undrip
## wet’suwet’en                                                                                                                                                                                                                         wet’suwet’en
## collaborating                                                                                                                                                                                                                       collaborating
## crisis”                                                                                                                                                                                                                                   crisis”
## focusing                                                                                                                                                                                                                                 focusing
## followed                                                                                                                                                                                                                                 followed
## formed                                                                                                                                                                                                                                     formed
## furthering                                                                                                                                                                                                                             furthering
## highlighted                                                                                                                                                                                                                           highlighted
## investing                                                                                                                                                                                                                               investing
## money                                                                                                                                                                                                                                       money
## ndp                                                                                                                                                                                                                                           ndp
## prepare                                                                                                                                                                                                                                   prepare
## prevention                                                                                                                                                                                                                             prevention
## resilient                                                                                                                                                                                                                               resilient
## set                                                                                                                                                                                                                                           set
## setting                                                                                                                                                                                                                                   setting
## wildfires                                                                                                                                                                                                                               wildfires
## “climate                                                                                                                                                                                                                                 “climate
## affecting                                                                                                                                                                                                                               affecting
## affirms                                                                                                                                                                                                                                   affirms
## assessment                                                                                                                                                                                                                             assessment
## call                                                                                                                                                                                                                                         call
## consumption                                                                                                                                                                                                                           consumption
## currently                                                                                                                                                                                                                               currently
## drives                                                                                                                                                                                                                                     drives
## exceed                                                                                                                                                                                                                                     exceed
## experts                                                                                                                                                                                                                                   experts
## fall                                                                                                                                                                                                                                         fall
## life                                                                                                                                                                                                                                         life
## likely                                                                                                                                                                                                                                     likely
## newest                                                                                                                                                                                                                                     newest
## reductions”                                                                                                                                                                                                                           reductions”
## responsible                                                                                                                                                                                                                           responsible
## special                                                                                                                                                                                                                                   special
## sustainability                                                                                                                                                                                                                     sustainability
## understanding                                                                                                                                                                                                                       understanding
## unless                                                                                                                                                                                                                                     unless
## update                                                                                                                                                                                                                                     update
## written                                                                                                                                                                                                                                   written
## “deep                                                                                                                                                                                                                                       “deep
## agreed                                                                                                                                                                                                                                     agreed
## binding                                                                                                                                                                                                                                   binding
## detailed                                                                                                                                                                                                                                 detailed
## legally                                                                                                                                                                                                                                   legally
## motivated                                                                                                                                                                                                                               motivated
## preferably                                                                                                                                                                                                                             preferably
## ratified                                                                                                                                                                                                                                 ratified
## sovereign                                                                                                                                                                                                                               sovereign
## submit                                                                                                                                                                                                                                     submit
## treaty                                                                                                                                                                                                                                     treaty
## available                                                                                                                                                                                                                               available
## aware                                                                                                                                                                                                                                       aware
## best                                                                                                                                                                                                                                         best
## diversifying                                                                                                                                                                                                                         diversifying
## economies                                                                                                                                                                                                                               economies
## efforts                                                                                                                                                                                                                                   efforts
## enacting                                                                                                                                                                                                                                 enacting
## evaluating                                                                                                                                                                                                                             evaluating
## financing                                                                                                                                                                                                                               financing
## guided                                                                                                                                                                                                                                     guided
## knowledge“                                                                                                                                                                                                                             knowledge“
## mobilizing                                                                                                                                                                                                                             mobilizing
## planning                                                                                                                                                                                                                                 planning
## programs                                                                                                                                                                                                                                 programs
## responses                                                                                                                                                                                                                               responses
## transparent                                                                                                                                                                                                                           transparent
## unfcc                                                                                                                                                                                                                                       unfcc
## vision“                                                                                                                                                                                                                                   vision“
## “                                                                                                                                                                                                                                               “
## “longterm                                                                                                                                                                                                                               “longterm
## cutting                                                                                                                                                                                                                                   cutting
## enhanced                                                                                                                                                                                                                                 enhanced
## families                                                                                                                                                                                                                                 families
## habitats                                                                                                                                                                                                                                 habitats
## household                                                                                                                                                                                                                               household
## innovating                                                                                                                                                                                                                             innovating
## original                                                                                                                                                                                                                                 original
## outlining                                                                                                                                                                                                                               outlining
## rebates                                                                                                                                                                                                                                   rebates
## respecting                                                                                                                                                                                                                             respecting
## submitted                                                                                                                                                                                                                               submitted
## bioeconomy                                                                                                                                                                                                                             bioeconomy
## climatechange                                                                                                                                                                                                                       climatechange
## collecting                                                                                                                                                                                                                             collecting
## cultivated                                                                                                                                                                                                                             cultivated
## data                                                                                                                                                                                                                                         data
## extend                                                                                                                                                                                                                                     extend
## fisheries                                                                                                                                                                                                                               fisheries
## globally                                                                                                                                                                                                                                 globally
## map                                                                                                                                                                                                                                           map
## preparedness                                                                                                                                                                                                                         preparedness
## purposes                                                                                                                                                                                                                                 purposes
## ready                                                                                                                                                                                                                                       ready
## released                                                                                                                                                                                                                                 released
## road                                                                                                                                                                                                                                         road
## targeted                                                                                                                                                                                                                                 targeted
## accelerator                                                                                                                                                                                                                           accelerator
## allow                                                                                                                                                                                                                                       allow
## capped                                                                                                                                                                                                                                     capped
## cumulatively                                                                                                                                                                                                                         cumulatively
## offered                                                                                                                                                                                                                                   offered
## proposals                                                                                                                                                                                                                               proposals
## reviewed                                                                                                                                                                                                                                 reviewed
## america                                                                                                                                                                                                                                   america
## applied                                                                                                                                                                                                                                   applied
## canadians                                                                                                                                                                                                                               canadians
## credit                                                                                                                                                                                                                                     credit
## fueltype                                                                                                                                                                                                                                 fueltype
## kind                                                                                                                                                                                                                                         kind
## metric                                                                                                                                                                                                                                     metric
## middleincome                                                                                                                                                                                                                         middleincome
## purchase                                                                                                                                                                                                                                 purchase
## rebated                                                                                                                                                                                                                                   rebated
## solution                                                                                                                                                                                                                                 solution
## starting                                                                                                                                                                                                                                 starting
## taxes                                                                                                                                                                                                                                       taxes
## ton                                                                                                                                                                                                                                           ton
## charging                                                                                                                                                                                                                                 charging
## deferring                                                                                                                                                                                                                               deferring
## electrifying                                                                                                                                                                                                                         electrifying
## expanding                                                                                                                                                                                                                               expanding
## installations                                                                                                                                                                                                                       installations
## passenger                                                                                                                                                                                                                               passenger
## previously                                                                                                                                                                                                                             previously
## promises                                                                                                                                                                                                                                 promises
## promoting                                                                                                                                                                                                                               promoting
## pump                                                                                                                                                                                                                                         pump
## subsidizing                                                                                                                                                                                                                           subsidizing
## vehicles                                                                                                                                                                                                                                 vehicles
## world                                                                                                                                                                                                                                       world
## zeroemission                                                                                                                                                                                                                         zeroemission
## competitively                                                                                                                                                                                                                       competitively
## final                                                                                                                                                                                                                                       final
## leader                                                                                                                                                                                                                                     leader
## move                                                                                                                                                                                                                                         move
## sections                                                                                                                                                                                                                                 sections
## rest                                                                                                                                                                                                                                         rest
## “inform                                                                                                                                                                                                                                   “inform
## ”                                                                                                                                                                                                                                               ”
## analyzing                                                                                                                                                                                                                               analyzing
## impacted                                                                                                                                                                                                                                 impacted
## inform                                                                                                                                                                                                                                     inform
## understand                                                                                                                                                                                                                             understand
## barometric                                                                                                                                                                                                                             barometric
## common                                                                                                                                                                                                                                     common
## difference                                                                                                                                                                                                                             difference
## distinguishing                                                                                                                                                                                                                     distinguishing
## hourly                                                                                                                                                                                                                                     hourly
## influences                                                                                                                                                                                                                             influences
## recognize                                                                                                                                                                                                                               recognize
## seasonally                                                                                                                                                                                                                             seasonally
## speed                                                                                                                                                                                                                                       speed
## start                                                                                                                                                                                                                                       start
## statistical                                                                                                                                                                                                                           statistical
## variabilities                                                                                                                                                                                                                       variabilities
## vary                                                                                                                                                                                                                                         vary
## alternating                                                                                                                                                                                                                           alternating
## canada‘s                                                                                                                                                                                                                                 canada‘s
## climatic                                                                                                                                                                                                                                 climatic
## frostfree                                                                                                                                                                                                                               frostfree
## lots                                                                                                                                                                                                                                         lots
## lowpressure                                                                                                                                                                                                                           lowpressure
## moderating                                                                                                                                                                                                                             moderating
## multiyear                                                                                                                                                                                                                               multiyear
## periods                                                                                                                                                                                                                                   periods
## prevailing                                                                                                                                                                                                                             prevailing
## rainfall                                                                                                                                                                                                                                 rainfall
## seasonal                                                                                                                                                                                                                                 seasonal
## warmest                                                                                                                                                                                                                                   warmest
## west                                                                                                                                                                                                                                         west
## winds                                                                                                                                                                                                                                       winds
## basins                                                                                                                                                                                                                                     basins
## block                                                                                                                                                                                                                                       block
## columbia                                                                                                                                                                                                                                 columbia
## coming                                                                                                                                                                                                                                     coming
## distance                                                                                                                                                                                                                                 distance
## distribute                                                                                                                                                                                                                             distribute
## eastern                                                                                                                                                                                                                                   eastern
## elevation                                                                                                                                                                                                                               elevation
## exposure                                                                                                                                                                                                                                 exposure
## gradient                                                                                                                                                                                                                                 gradient
## great                                                                                                                                                                                                                                       great
## islands                                                                                                                                                                                                                                   islands
## marine                                                                                                                                                                                                                                     marine
## masses                                                                                                                                                                                                                                     masses
## mild                                                                                                                                                                                                                                         mild
## northsouth                                                                                                                                                                                                                             northsouth
## parallel                                                                                                                                                                                                                                 parallel
## prairies                                                                                                                                                                                                                                 prairies
## separated                                                                                                                                                                                                                               separated
## afternoons                                                                                                                                                                                                                             afternoons
## brings                                                                                                                                                                                                                                     brings
## driest                                                                                                                                                                                                                                     driest
## dryer                                                                                                                                                                                                                                       dryer
## elevations                                                                                                                                                                                                                             elevations
## experiences                                                                                                                                                                                                                           experiences
## generating                                                                                                                                                                                                                             generating
## higher                                                                                                                                                                                                                                     higher
## rainshadow                                                                                                                                                                                                                             rainshadow
## range                                                                                                                                                                                                                                       range
## side                                                                                                                                                                                                                                         side
## slopes                                                                                                                                                                                                                                     slopes
## southcentral                                                                                                                                                                                                                         southcentral
## spring                                                                                                                                                                                                                                     spring
## thunderstorm                                                                                                                                                                                                                         thunderstorm
## valleybottoms                                                                                                                                                                                                                       valleybottoms
## valleys                                                                                                                                                                                                                                   valleys
## westerly                                                                                                                                                                                                                                 westerly
## wet                                                                                                                                                                                                                                           wet
## days                                                                                                                                                                                                                                         days
## declared                                                                                                                                                                                                                                 declared
## dramatic                                                                                                                                                                                                                                 dramatic
## history                                                                                                                                                                                                                                   history
## lives                                                                                                                                                                                                                                       lives
## longest                                                                                                                                                                                                                                   longest
## recordbreaking                                                                                                                                                                                                                     recordbreaking
## waves                                                                                                                                                                                                                                       waves
## wild                                                                                                                                                                                                                                         wild
## worst                                                                                                                                                                                                                                       worst
## floods                                                                                                                                                                                                                                     floods
## george                                                                                                                                                                                                                                     george
## harbour                                                                                                                                                                                                                                   harbour
## hot                                                                                                                                                                                                                                           hot
## june                                                                                                                                                                                                                                         june
## lytton                                                                                                                                                                                                                                     lytton
## prince                                                                                                                                                                                                                                     prince
## third                                                                                                                                                                                                                                       third
## victoria                                                                                                                                                                                                                                 victoria
## anything                                                                                                                                                                                                                                 anything
## etal                                                                                                                                                                                                                                         etal
## glaciers                                                                                                                                                                                                                                 glaciers
## mention                                                                                                                                                                                                                                   mention
## moisture                                                                                                                                                                                                                                 moisture
## page                                                                                                                                                                                                                                         page
## spittlehouse                                                                                                                                                                                                                         spittlehouse
## normals                                                                                                                                                                                                                                   normals
## compared                                                                                                                                                                                                                                 compared
## norm                                                                                                                                                                                                                                         norm
## year                                                                                                                                                                                                                                         year
## max                                                                                                                                                                                                                                           max
## min                                                                                                                                                                                                                                           min
## norms                                                                                                                                                                                                                                       norms
## precip                                                                                                                                                                                                                                     precip
## temp                                                                                                                                                                                                                                         temp
## differ                                                                                                                                                                                                                                     differ
## mean                                                                                                                                                                                                                                         mean
## planetary                                                                                                                                                                                                                               planetary
## leading                                                                                                                                                                                                                                   leading
## jurisdiction                                                                                                                                                                                                                         jurisdiction
## actuaries                                                                                                                                                                                                                               actuaries
## index                                                                                                                                                                                                                                       index
## asterix                                                                                                                                                                                                                                   asterix
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                                                                         httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                                                                                               httpsdatapacificclimateorgportaldownscaledgcmsmap
## strength                                                                                                                                                                                                                                 strength
## forecast                                                                                                                                                                                                                                 forecast
## modeled                                                                                                                                                                                                                                   modeled
## prediction                                                                                                                                                                                                                             prediction
## projection                                                                                                                                                                                                                             projection
## see                                                                                                                                                                                                                                           see
## httpstwittercomthomasforbcstatuss                                                                                                                                                                               httpstwittercomthomasforbcstatuss
## amount                                                                                                                                                                                                                                     amount
## drying                                                                                                                                                                                                                                     drying
## melt                                                                                                                                                                                                                                         melt
## persistence                                                                                                                                                                                                                           persistence
## snowpack                                                                                                                                                                                                                                 snowpack
## get                                                                                                                                                                                                                                           get
## hotter                                                                                                                                                                                                                                     hotter
## summers                                                                                                                                                                                                                                   summers
## trend                                                                                                                                                                                                                                       trend
## months                                                                                                                                                                                                                                     months
## decadal                                                                                                                                                                                                                                   decadal
## american                                                                                                                                                                                                                                 american
## lifetime                                                                                                                                                                                                                                 lifetime
## pattern                                                                                                                                                                                                                                   pattern
## amplified                                                                                                                                                                                                                               amplified
## coincided                                                                                                                                                                                                                               coincided
## cycles                                                                                                                                                                                                                                     cycles
## series                                                                                                                                                                                                                                     series
## imbalance                                                                                                                                                                                                                               imbalance
## increases                                                                                                                                                                                                                               increases
## keeping                                                                                                                                                                                                                                   keeping
## relative                                                                                                                                                                                                                                 relative
## transfer                                                                                                                                                                                                                                 transfer
## •                                                                                                                                                                                                                                               •
## affects                                                                                                                                                                                                                                   affects
## heating                                                                                                                                                                                                                                   heating
## slowly                                                                                                                                                                                                                                     slowly
## cumulative                                                                                                                                                                                                                             cumulative
## deforestation                                                                                                                                                                                                                       deforestation
## esp                                                                                                                                                                                                                                           esp
## march                                                                                                                                                                                                                                       march
## nitrous                                                                                                                                                                                                                                   nitrous
## oxide                                                                                                                                                                                                                                       oxide
## httpsbritishcolumbiacombcweatherbc                                                                                                                                                                             httpsbritishcolumbiacombcweatherbc
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                                                                                 httpspicsuviccaresearchclimatehealthcovidbritishcolumbia
## httpsopentextbccageographychapterclimateenvironmentbc                                                                                                                                       httpsopentextbccageographychapterclimateenvironmentbc
## httpsclimatechangecanadacabritishcolumbia                                                                                                                                                               httpsclimatechangecanadacabritishcolumbia
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                                                           httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia
## guiding                                                                                                                                                                                                                                   guiding
## makers                                                                                                                                                                                                                                     makers
## presented                                                                                                                                                                                                                               presented
## scientists                                                                                                                                                                                                                             scientists
## considers                                                                                                                                                                                                                               considers
## bc’                                                                                                                                                                                                                                           bc’
## depends                                                                                                                                                                                                                                   depends
## grasslands                                                                                                                                                                                                                             grasslands
## healthier                                                                                                                                                                                                                               healthier
## matter                                                                                                                                                                                                                                     matter
## nature                                                                                                                                                                                                                                     nature
## particulate                                                                                                                                                                                                                           particulate
## retention                                                                                                                                                                                                                               retention
## shrubs                                                                                                                                                                                                                                     shrubs
## stored                                                                                                                                                                                                                                     stored
## zone                                                                                                                                                                                                                                         zone
## ‘beautiful                                                                                                                                                                                                                             ‘beautiful
## accessible                                                                                                                                                                                                                             accessible
## distributed                                                                                                                                                                                                                           distributed
## excluded                                                                                                                                                                                                                                 excluded
## inclusive                                                                                                                                                                                                                               inclusive
## inequality                                                                                                                                                                                                                             inequality
## multiple                                                                                                                                                                                                                                 multiple
## reductions                                                                                                                                                                                                                             reductions
## spreading                                                                                                                                                                                                                               spreading
## thus                                                                                                                                                                                                                                         thus
## consultation                                                                                                                                                                                                                         consultation
## diesel                                                                                                                                                                                                                                     diesel
## generators                                                                                                                                                                                                                             generators
## relations                                                                                                                                                                                                                               relations
## reliance                                                                                                                                                                                                                                 reliance
## develop                                                                                                                                                                                                                                   develop
## environments                                                                                                                                                                                                                         environments
## explore                                                                                                                                                                                                                                   explore
## inspired                                                                                                                                                                                                                                 inspired
## lowemission                                                                                                                                                                                                                           lowemission
## researchers                                                                                                                                                                                                                           researchers
## revitalized                                                                                                                                                                                                                           revitalized
## skilled                                                                                                                                                                                                                                   skilled
## smooth                                                                                                                                                                                                                                     smooth
## student                                                                                                                                                                                                                                   student
## chance                                                                                                                                                                                                                                     chance
## cycling                                                                                                                                                                                                                                   cycling
## diversification                                                                                                                                                                                                                   diversification
## managed                                                                                                                                                                                                                                   managed
## newly                                                                                                                                                                                                                                       newly
## nutrient                                                                                                                                                                                                                                 nutrient
## preservation                                                                                                                                                                                                                         preservation
## purification                                                                                                                                                                                                                         purification
## recreation                                                                                                                                                                                                                             recreation
## rethink                                                                                                                                                                                                                                   rethink
## spirituality                                                                                                                                                                                                                         spirituality
## stewardship                                                                                                                                                                                                                           stewardship
## tissue                                                                                                                                                                                                                                     tissue
## wildlife                                                                                                                                                                                                                                 wildlife
## woody                                                                                                                                                                                                                                       woody
## abound                                                                                                                                                                                                                                     abound
## contribution                                                                                                                                                                                                                         contribution
## ensures                                                                                                                                                                                                                                   ensures
## farming                                                                                                                                                                                                                                   farming
## importing                                                                                                                                                                                                                               importing
## preserving                                                                                                                                                                                                                             preserving
## ranching                                                                                                                                                                                                                                 ranching
## rebuilt                                                                                                                                                                                                                                   rebuilt
## recently                                                                                                                                                                                                                                 recently
## reduces                                                                                                                                                                                                                                   reduces
## reserve                                                                                                                                                                                                                                   reserve
## destructive                                                                                                                                                                                                                           destructive
## environmentally                                                                                                                                                                                                                   environmentally
## preparing                                                                                                                                                                                                                               preparing
## reconstruct                                                                                                                                                                                                                           reconstruct
## thrive                                                                                                                                                                                                                                     thrive
## zoning                                                                                                                                                                                                                                     zoning
## cite                                                                                                                                                                                                                                         cite
## cleaning                                                                                                                                                                                                                                 cleaning
## covid                                                                                                                                                                                                                                       covid
## greatly                                                                                                                                                                                                                                   greatly
## lockdown                                                                                                                                                                                                                                 lockdown
## looking                                                                                                                                                                                                                                   looking
## markets                                                                                                                                                                                                                                   markets
## pays                                                                                                                                                                                                                                         pays
## polluter                                                                                                                                                                                                                                 polluter
## principle                                                                                                                                                                                                                               principle
## providing                                                                                                                                                                                                                               providing
## reassessing                                                                                                                                                                                                                           reassessing
## reevaluate                                                                                                                                                                                                                             reevaluate
## something                                                                                                                                                                                                                               something
## try                                                                                                                                                                                                                                           try
## interests                                                                                                                                                                                                                               interests
## involves                                                                                                                                                                                                                                 involves
## myriad                                                                                                                                                                                                                                     myriad
## detractors                                                                                                                                                                                                                             detractors
## measure                                                                                                                                                                                                                                   measure
## supporters                                                                                                                                                                                                                             supporters
## highlight                                                                                                                                                                                                                               highlight
## might                                                                                                                                                                                                                                       might
## mitigated                                                                                                                                                                                                                               mitigated
## overcome                                                                                                                                                                                                                                 overcome
## ided                                                                                                                                                                                                                                         ided
## discuss                                                                                                                                                                                                                                   discuss
## displaced                                                                                                                                                                                                                               displaced
## communicate                                                                                                                                                                                                                           communicate
## inspire                                                                                                                                                                                                                                   inspire
## accepting                                                                                                                                                                                                                               accepting
## comes                                                                                                                                                                                                                                       comes
## continuing                                                                                                                                                                                                                             continuing
## directions                                                                                                                                                                                                                             directions
## emit                                                                                                                                                                                                                                         emit
## expensive                                                                                                                                                                                                                               expensive
## inherent                                                                                                                                                                                                                                 inherent
## paths                                                                                                                                                                                                                                       paths
## problem                                                                                                                                                                                                                                   problem
## relying                                                                                                                                                                                                                                   relying
## researching                                                                                                                                                                                                                           researching
## simply                                                                                                                                                                                                                                     simply
## source                                                                                                                                                                                                                                     source
## suggest                                                                                                                                                                                                                                   suggest
## timelines                                                                                                                                                                                                                               timelines
## unproven                                                                                                                                                                                                                                 unproven
## concerns                                                                                                                                                                                                                                 concerns
## give                                                                                                                                                                                                                                         give
## legitimate                                                                                                                                                                                                                             legitimate
## oceans”                                                                                                                                                                                                                                   oceans”
## places                                                                                                                                                                                                                                     places
## protect                                                                                                                                                                                                                                   protect
## raised                                                                                                                                                                                                                                     raised
## shellfish                                                                                                                                                                                                                               shellfish
## shells                                                                                                                                                                                                                                     shells
## shortterm                                                                                                                                                                                                                               shortterm
## “irreversible                                                                                                                                                                                                                       “irreversible
## advisory                                                                                                                                                                                                                                 advisory
## advocating                                                                                                                                                                                                                             advocating
## businesses                                                                                                                                                                                                                             businesses
## consumers                                                                                                                                                                                                                               consumers
## disabled                                                                                                                                                                                                                                 disabled
## individual                                                                                                                                                                                                                             individual
## member                                                                                                                                                                                                                                     member
## missing                                                                                                                                                                                                                                   missing
## organizations                                                                                                                                                                                                                       organizations
## poverty                                                                                                                                                                                                                                   poverty
## seeking                                                                                                                                                                                                                                   seeking
## accepted                                                                                                                                                                                                                                 accepted
## declaration                                                                                                                                                                                                                           declaration
## departments                                                                                                                                                                                                                           departments
## drip                                                                                                                                                                                                                                         drip
## engagement                                                                                                                                                                                                                             engagement
## forms                                                                                                                                                                                                                                       forms
## governance                                                                                                                                                                                                                             governance
## hereditary                                                                                                                                                                                                                             hereditary
## indian                                                                                                                                                                                                                                     indian
## lands                                                                                                                                                                                                                                       lands
## peoples                                                                                                                                                                                                                                   peoples
## personnel                                                                                                                                                                                                                               personnel
## protocols                                                                                                                                                                                                                               protocols
## reservation                                                                                                                                                                                                                           reservation
## situated                                                                                                                                                                                                                                 situated
## territorial                                                                                                                                                                                                                           territorial
## treaties                                                                                                                                                                                                                                 treaties
## decline                                                                                                                                                                                                                                   decline
## except                                                                                                                                                                                                                                     except
## expansion                                                                                                                                                                                                                               expansion
## general                                                                                                                                                                                                                                   general
## greenenergy                                                                                                                                                                                                                           greenenergy
## retirements                                                                                                                                                                                                                           retirements
## socioeconomic                                                                                                                                                                                                                       socioeconomic
## absorption                                                                                                                                                                                                                             absorption
## ecoservices                                                                                                                                                                                                                           ecoservices
## insect                                                                                                                                                                                                                                     insect
## pause                                                                                                                                                                                                                                       pause
## stressed                                                                                                                                                                                                                                 stressed
## system                                                                                                                                                                                                                                     system
## techniques                                                                                                                                                                                                                             techniques
## uncertainty                                                                                                                                                                                                                           uncertainty
## unsustainable                                                                                                                                                                                                                       unsustainable
## addressed                                                                                                                                                                                                                               addressed
## alternate                                                                                                                                                                                                                               alternate
## became                                                                                                                                                                                                                                     became
## grown                                                                                                                                                                                                                                       grown
## locally                                                                                                                                                                                                                                   locally
## prone                                                                                                                                                                                                                                       prone
## remain                                                                                                                                                                                                                                     remain
## toxins                                                                                                                                                                                                                                     toxins
## adaption                                                                                                                                                                                                                                 adaption
## anew                                                                                                                                                                                                                                         anew
## considered                                                                                                                                                                                                                             considered
## expense                                                                                                                                                                                                                                   expense
## farm                                                                                                                                                                                                                                         farm
## income                                                                                                                                                                                                                                     income
## infrastructure”                                                                                                                                                                                                                   infrastructure”
## lost                                                                                                                                                                                                                                         lost
## policies”                                                                                                                                                                                                                               policies”
## require                                                                                                                                                                                                                                   require
## results                                                                                                                                                                                                                                   results
## “ambitious                                                                                                                                                                                                                             “ambitious
## “systemic                                                                                                                                                                                                                               “systemic
## comparisons                                                                                                                                                                                                                           comparisons
## previous                                                                                                                                                                                                                                 previous
## conclusions                                                                                                                                                                                                                           conclusions
## summaryconclude                                                                                                                                                                                                                   summaryconclude
## parts                                                                                                                                                                                                                                       parts
## open                                                                                                                                                                                                                                         open
## paragraph                                                                                                                                                                                                                               paragraph
## parti                                                                                                                                                                                                                                       parti
## along                                                                                                                                                                                                                                       along
## demographic                                                                                                                                                                                                                           demographic
## varying                                                                                                                                                                                                                                   varying
## actor                                                                                                                                                                                                                                       actor
## pick                                                                                                                                                                                                                                         pick
## fulfillment                                                                                                                                                                                                                           fulfillment
## identification                                                                                                                                                                                                                     identification
## issue                                                                                                                                                                                                                                       issue
## suggested                                                                                                                                                                                                                               suggested
## actionoriented                                                                                                                                                                                                                     actionoriented
## inclusion                                                                                                                                                                                                                               inclusion
## practical                                                                                                                                                                                                                               practical
## rationales                                                                                                                                                                                                                             rationales
## term                                                                                                                                                                                                                                         term
## think                                                                                                                                                                                                                                       think
## underway                                                                                                                                                                                                                                 underway
## factor                                                                                                                                                                                                                                     factor
## consideration                                                                                                                                                                                                                       consideration
## number                                                                                                                                                                                                                                     number
## order                                                                                                                                                                                                                                       order
## posed                                                                                                                                                                                                                                       posed
## strategic                                                                                                                                                                                                                               strategic
## avoid                                                                                                                                                                                                                                       avoid
## linealigned                                                                                                                                                                                                                           linealigned
## sake                                                                                                                                                                                                                                         sake
## sure                                                                                                                                                                                                                                         sure
## thought                                                                                                                                                                                                                                   thought
## wise                                                                                                                                                                                                                                         wise
## appropriate                                                                                                                                                                                                                           appropriate
## estate                                                                                                                                                                                                                                     estate
## extraction                                                                                                                                                                                                                             extraction
## real                                                                                                                                                                                                                                         real
## restore                                                                                                                                                                                                                                   restore
## valuable                                                                                                                                                                                                                                 valuable
## assure                                                                                                                                                                                                                                     assure
## fair                                                                                                                                                                                                                                         fair
## finance                                                                                                                                                                                                                                   finance
## industrial                                                                                                                                                                                                                             industrial
## just                                                                                                                                                                                                                                         just
## supportive                                                                                                                                                                                                                             supportive
## green                                                                                                                                                                                                                                       green
## process                                                                                                                                                                                                                                   process
## relationships                                                                                                                                                                                                                       relationships
## together                                                                                                                                                                                                                                 together
## carbonfree                                                                                                                                                                                                                             carbonfree
## design                                                                                                                                                                                                                                     design
## engineer                                                                                                                                                                                                                                 engineer
## innovate                                                                                                                                                                                                                                 innovate
## maintain                                                                                                                                                                                                                                 maintain
## produce                                                                                                                                                                                                                                   produce
## train                                                                                                                                                                                                                                       train
## transitioning                                                                                                                                                                                                                       transitioning
## young                                                                                                                                                                                                                                       young
## capture                                                                                                                                                                                                                                   capture
## deciduous                                                                                                                                                                                                                               deciduous
## diverse                                                                                                                                                                                                                                   diverse
## effectively                                                                                                                                                                                                                           effectively
## firebreak                                                                                                                                                                                                                               firebreak
## functions                                                                                                                                                                                                                               functions
## mills                                                                                                                                                                                                                                       mills
## refit                                                                                                                                                                                                                                       refit
## smaller                                                                                                                                                                                                                                   smaller
## tree                                                                                                                                                                                                                                         tree
## compliance                                                                                                                                                                                                                             compliance
## continuation                                                                                                                                                                                                                         continuation
## enforcement                                                                                                                                                                                                                           enforcement
## equipment                                                                                                                                                                                                                               equipment
## gaspowered                                                                                                                                                                                                                             gaspowered
## innovations                                                                                                                                                                                                                           innovations
## replace                                                                                                                                                                                                                                   replace
## demolishing                                                                                                                                                                                                                           demolishing
## don’t                                                                                                                                                                                                                                       don’t
## fireresiliency                                                                                                                                                                                                                     fireresiliency
## focus                                                                                                                                                                                                                                       focus
## restoring                                                                                                                                                                                                                               restoring
## risk                                                                                                                                                                                                                                         risk
## safe                                                                                                                                                                                                                                         safe
## structures                                                                                                                                                                                                                             structures
## updating                                                                                                                                                                                                                                 updating
## exhaustive                                                                                                                                                                                                                             exhaustive
## ‘lens’                                                                                                                                                                                                                                     ‘lens’
## sense                                                                                                                                                                                                                                       sense
## urgency                                                                                                                                                                                                                                   urgency
## ultimate                                                                                                                                                                                                                                 ultimate
## initiating                                                                                                                                                                                                                             initiating
## lead                                                                                                                                                                                                                                         lead
## market                                                                                                                                                                                                                                     market
## initial                                                                                                                                                                                                                                   initial
## outline                                                                                                                                                                                                                                   outline
## refer                                                                                                                                                                                                                                       refer
## difference’                                                                                                                                                                                                                           difference’
## know                                                                                                                                                                                                                                         know
## recognizing                                                                                                                                                                                                                           recognizing
## ‘make                                                                                                                                                                                                                                       ‘make
## honour                                                                                                                                                                                                                                     honour
## reason                                                                                                                                                                                                                                     reason
## reports                                                                                                                                                                                                                                   reports
## taking                                                                                                                                                                                                                                     taking
## british                                                                                                                                                                                                                                   british
## business                                                                                                                                                                                                                                 business
## columbians                                                                                                                                                                                                                             columbians
## ensured                                                                                                                                                                                                                                   ensured
## stewarding                                                                                                                                                                                                                             stewarding
## unique                                                                                                                                                                                                                                     unique
## vibrant                                                                                                                                                                                                                                   vibrant
##                                                                                                                          freq
## climate                                                                                                                    67
## emissions                                                                                                                  41
## bc’s                                                                                                                       25
## will                                                                                                                       23
## change                                                                                                                     22
## reduce                                                                                                                     21
## carbon                                                                                                                     17
## help                                                                                                                       17
## regions                                                                                                                    16
## ghg                                                                                                                        16
## action                                                                                                                     15
## future                                                                                                                     15
## indigenous                                                                                                                 15
## challenges                                                                                                                 15
## weather                                                                                                                    15
## temperature                                                                                                                14
## also                                                                                                                       14
## industry                                                                                                                   14
## opportunity                                                                                                                14
## changing                                                                                                                   13
## social                                                                                                                     13
## economic                                                                                                                   13
## building                                                                                                                   13
## opportunities                                                                                                              13
## recommendations                                                                                                            12
## new                                                                                                                        12
## mitigation                                                                                                                 12
## gas                                                                                                                        11
## including                                                                                                                  11
## paris                                                                                                                      11
## provincial                                                                                                                 11
## canada’s                                                                                                                   11
## land                                                                                                                       11
## development                                                                                                                11
## energy                                                                                                                     11
## reducing                                                                                                                   11
## words                                                                                                                      11
## –                                                                                                                          11
## can                                                                                                                        10
## strategies                                                                                                                 10
## global                                                                                                                     10
## increased                                                                                                                  10
## agriculture                                                                                                                10
## natural                                                                                                                    10
## need                                                                                                                       10
## skills                                                                                                                     10
## recommendation                                                                                                             10
## food                                                                                                                       10
## supporting                                                                                                                 10
## changes                                                                                                                    10
## challenge                                                                                                                  10
## forests                                                                                                                     9
## communities                                                                                                                 9
## adaptation                                                                                                                  9
## clean                                                                                                                       9
## technology                                                                                                                  9
## benefits                                                                                                                    9
## provide                                                                                                                     9
## events                                                                                                                      9
## different                                                                                                                   8
## people                                                                                                                      8
## political                                                                                                                   8
## ipcc                                                                                                                        8
## growth                                                                                                                      8
## region                                                                                                                      8
## interior                                                                                                                    8
## buildings                                                                                                                   8
## oil                                                                                                                         8
## transportation                                                                                                              8
## protecting                                                                                                                  8
## training                                                                                                                    8
## agreement                                                                                                                   8
## integrity                                                                                                                   8
## well                                                                                                                        8
## section                                                                                                                     8
## extreme                                                                                                                     8
## air                                                                                                                         8
## environmental                                                                                                               8
## needs                                                                                                                       8
## support                                                                                                                     7
## ocean                                                                                                                       7
## biodiversity                                                                                                                7
## include                                                                                                                     7
## increasing                                                                                                                  7
## first                                                                                                                       7
## urgent                                                                                                                      7
## commitments                                                                                                                 7
## capacity                                                                                                                    7
## security                                                                                                                    7
## ecological                                                                                                                  7
## lowcarbon                                                                                                                   7
## atmospheric                                                                                                                 7
## services                                                                                                                    7
## analysis                                                                                                                    6
## report                                                                                                                      6
## cleanbc                                                                                                                     6
## ndc                                                                                                                         6
## mountains                                                                                                                   6
## regional                                                                                                                    6
## groups                                                                                                                      6
## north                                                                                                                       6
## potential                                                                                                                   6
## coastal                                                                                                                     6
## adapt                                                                                                                       6
## commitment                                                                                                                  6
## past                                                                                                                        6
## since                                                                                                                       6
## climates                                                                                                                    6
## find                                                                                                                        6
## levels                                                                                                                      6
## °c                                                                                                                          6
## temperatures                                                                                                                6
## years                                                                                                                       6
## ensuring                                                                                                                    6
## equity                                                                                                                      6
## precipitation                                                                                                               6
## summary                                                                                                                     6
## systems                                                                                                                     6
## century                                                                                                                     6
## incorporate                                                                                                                 6
## solutions                                                                                                                   6
## water                                                                                                                       6
## ensure                                                                                                                      6
## important                                                                                                                   5
## accord                                                                                                                      5
## address                                                                                                                     5
## canada                                                                                                                      5
## impacts                                                                                                                     5
## international                                                                                                               5
## warming                                                                                                                     5
## pacific                                                                                                                     5
## province                                                                                                                    5
## south                                                                                                                       5
## health                                                                                                                      5
## population                                                                                                                  5
## result                                                                                                                      5
## though                                                                                                                      5
## within                                                                                                                      5
## forestry                                                                                                                    5
## key                                                                                                                         5
## sectors                                                                                                                     5
## actions                                                                                                                     5
## continue                                                                                                                    5
## local                                                                                                                       5
## based                                                                                                                       5
## flooding                                                                                                                    5
## canadian                                                                                                                    5
## goals                                                                                                                       5
## time                                                                                                                        5
## jobs                                                                                                                        5
## economy                                                                                                                     5
## forest                                                                                                                      5
## fulfill                                                                                                                     5
## reduction                                                                                                                   5
## innovative                                                                                                                  5
## mitigate                                                                                                                    5
## policy                                                                                                                      5
## trees                                                                                                                       5
## become                                                                                                                      5
## work                                                                                                                        5
## make                                                                                                                        5
## communication                                                                                                               5
## copied                                                                                                                      5
## edited                                                                                                                      5
## managing                                                                                                                    5
## still                                                                                                                       5
## part                                                                                                                        4
## contribute                                                                                                                  4
## live                                                                                                                        4
## respond                                                                                                                     4
## accelerated                                                                                                                 4
## plan                                                                                                                        4
## area                                                                                                                        4
## mountain                                                                                                                    4
## northern                                                                                                                    4
## total                                                                                                                       4
## creating                                                                                                                    4
## districts                                                                                                                   4
## high                                                                                                                        4
## use                                                                                                                         4
## increase                                                                                                                    4
## less                                                                                                                        4
## may                                                                                                                         4
## projected                                                                                                                   4
## workers                                                                                                                     4
## central                                                                                                                     4
## experienced                                                                                                                 4
## coast                                                                                                                       4
## gdp                                                                                                                         4
## government                                                                                                                  4
## recent                                                                                                                      4
## financial                                                                                                                   4
## recovery                                                                                                                    4
## wildfire                                                                                                                    4
## balance                                                                                                                     4
## healthy                                                                                                                     4
## rise                                                                                                                        4
## effects                                                                                                                     4
## knowledge                                                                                                                   4
## resilience                                                                                                                  4
## traditional                                                                                                                 4
## competitive                                                                                                                 4
## emission                                                                                                                    4
## encourage                                                                                                                   4
## fuel                                                                                                                        4
## tax                                                                                                                         4
## costs                                                                                                                       4
## sector                                                                                                                      4
## workforce                                                                                                                   4
## becoming                                                                                                                    4
## patterns                                                                                                                    4
## period                                                                                                                      4
## summer                                                                                                                      4
## winter                                                                                                                      4
## cold                                                                                                                        4
## warm                                                                                                                        4
## wetter                                                                                                                      4
## fires                                                                                                                       4
## observed                                                                                                                    4
## look                                                                                                                        4
## lecture                                                                                                                     4
##                                                                                                                            4
## methane                                                                                                                     4
## offer                                                                                                                       4
## build                                                                                                                       4
## rebuilding                                                                                                                  4
## way                                                                                                                         4
## intro                                                                                                                       4
## background                                                                                                                  3
## developing                                                                                                                  3
## geographic                                                                                                                  3
## includes                                                                                                                    3
## industries                                                                                                                  3
## information                                                                                                                 3
## used                                                                                                                        3
## created                                                                                                                     3
## dioxide                                                                                                                     3
## earth’s                                                                                                                     3
## issues                                                                                                                      3
## obligations                                                                                                                 3
## roadmap                                                                                                                     3
## crown                                                                                                                       3
## east                                                                                                                        3
## hectares                                                                                                                    3
## million                                                                                                                     3
## ranges                                                                                                                      3
## western                                                                                                                     3
## biogeoclimatic                                                                                                              3
## manage                                                                                                                      3
## vegetation                                                                                                                  3
## demographics                                                                                                                3
## areas                                                                                                                       3
## territories                                                                                                                 3
## dry                                                                                                                         3
## geography                                                                                                                   3
## construction                                                                                                                3
## logging                                                                                                                     3
## prior                                                                                                                       3
## rights                                                                                                                      3
## cpas                                                                                                                        3
## following                                                                                                                   3
## infrastructure                                                                                                              3
## nations                                                                                                                     3
## next                                                                                                                        3
## plans                                                                                                                       3
## policies                                                                                                                    3
## targets                                                                                                                     3
## affordable                                                                                                                  3
## innovation                                                                                                                  3
## keep                                                                                                                        3
## limit                                                                                                                       3
## made                                                                                                                        3
## preindustrial                                                                                                               3
## production                                                                                                                  3
## sustainable                                                                                                                 3
## every                                                                                                                       3
## reduced                                                                                                                     3
## education                                                                                                                   3
## encouraging                                                                                                                 3
## equitable                                                                                                                   3
## experience                                                                                                                  3
## incorporating                                                                                                               3
## learning                                                                                                                    3
## taken                                                                                                                       3
## creation                                                                                                                    3
## goal                                                                                                                        3
## homes                                                                                                                       3
## increasingly                                                                                                                3
## per                                                                                                                         3
## pollution                                                                                                                   3
## beyond                                                                                                                      3
## community                                                                                                                   3
## create                                                                                                                      3
## ecosystem                                                                                                                   3
## helping                                                                                                                     3
## strategy                                                                                                                    3
## technologies                                                                                                                3
## fund                                                                                                                        3
## projects                                                                                                                    3
## research                                                                                                                    3
## incentives                                                                                                                  3
## large                                                                                                                       3
## heat                                                                                                                        3
## continues                                                                                                                   3
## present                                                                                                                     3
## variations                                                                                                                  3
## averages                                                                                                                    3
## duration                                                                                                                    3
## wind                                                                                                                        3
## associated                                                                                                                  3
## atmosphere                                                                                                                  3
## circulation                                                                                                                 3
## flow                                                                                                                        3
## good                                                                                                                        3
## long                                                                                                                        3
## season                                                                                                                      3
## agricultural                                                                                                                3
## drought                                                                                                                     3
## emergency                                                                                                                   3
## november                                                                                                                    3
## resulting                                                                                                                   3
## locations                                                                                                                   3
## record                                                                                                                      3
## recorded                                                                                                                    3
## average                                                                                                                     3
## current                                                                                                                     3
## environment                                                                                                                 3
## trends                                                                                                                      3
## summarize                                                                                                                   3
## check                                                                                                                       3
## oscillation                                                                                                                 3
## effect                                                                                                                      3
## ability                                                                                                                     3
## species                                                                                                                     3
## landuse                                                                                                                     3
## already                                                                                                                     3
## developed                                                                                                                   3
## creative                                                                                                                    3
## affect                                                                                                                      3
## nature’s                                                                                                                    3
## addressing                                                                                                                  3
## growing                                                                                                                     3
## transition                                                                                                                  3
## instead                                                                                                                     3
## ways                                                                                                                        3
## codes                                                                                                                       3
## quality                                                                                                                     3
## plant                                                                                                                       3
## led                                                                                                                         3
## introduction                                                                                                                2
## brief                                                                                                                       2
## description                                                                                                                 2
## economically                                                                                                                2
## offers                                                                                                                      2
## due                                                                                                                         2
## especially                                                                                                                  2
## intergovernmental                                                                                                           2
## panel                                                                                                                       2
## pathways                                                                                                                    2
## required                                                                                                                    2
## border                                                                                                                      2
## rocky                                                                                                                       2
## authorities                                                                                                                 2
## census                                                                                                                      2
## ecosystems                                                                                                                  2
## geopolitical                                                                                                                2
## macroclimate                                                                                                                2
## municipalities                                                                                                              2
## school                                                                                                                      2
## subdivisions                                                                                                                2
## zones                                                                                                                       2
## ages                                                                                                                        2
## depending                                                                                                                   2
## fewer                                                                                                                       2
## migration                                                                                                                   2
## senior                                                                                                                      2
## cities                                                                                                                      2
## mostly                                                                                                                      2
## nation                                                                                                                      2
## rural                                                                                                                       2
## towns                                                                                                                       2
## villages                                                                                                                    2
## cariboo                                                                                                                     2
## mining                                                                                                                      2
## plateau                                                                                                                     2
## private                                                                                                                     2
## remote                                                                                                                      2
## specific                                                                                                                    2
## tourism                                                                                                                     2
## contributes                                                                                                                 2
## consent                                                                                                                     2
## examples                                                                                                                    2
## forward                                                                                                                     2
## free                                                                                                                        2
## informed                                                                                                                    2
## much                                                                                                                        2
## oldgrowth                                                                                                                   2
## subsidies                                                                                                                   2
## territory                                                                                                                   2
## unceded                                                                                                                     2
## accomplishments                                                                                                             2
## agreements                                                                                                                  2
## backdrop                                                                                                                    2
## budget                                                                                                                      2
## election                                                                                                                    2
## federal                                                                                                                     2
## liberal                                                                                                                     2
## majority                                                                                                                    2
## making                                                                                                                      2
## management                                                                                                                  2
## minority                                                                                                                    2
## responsibilities                                                                                                            2
## reviewing                                                                                                                   2
## speech                                                                                                                      2
## throne                                                                                                                      2
## equality                                                                                                                    2
## netzero                                                                                                                     2
## ppm                                                                                                                         2
## states                                                                                                                      2
## contributions                                                                                                               2
## c°                                                                                                                          2
## determined                                                                                                                  2
## nationally                                                                                                                  2
## rising                                                                                                                      2
## ambitious                                                                                                                   2
## balancing                                                                                                                   2
## considering                                                                                                                 2
## effective                                                                                                                   2
## monitoring                                                                                                                  2
## participation                                                                                                               2
## public                                                                                                                      2
## rapidly                                                                                                                     2
## risks                                                                                                                       2
## scientific                                                                                                                  2
## technological                                                                                                               2
## vulnerable                                                                                                                  2
## adapting                                                                                                                    2
## advantage                                                                                                                   2
## job                                                                                                                         2
## pricing                                                                                                                     2
## waste                                                                                                                       2
## economics                                                                                                                   2
## low                                                                                                                         2
## negative                                                                                                                    2
## partnerships                                                                                                                2
## consumer                                                                                                                    2
## fossil                                                                                                                      2
## introduced                                                                                                                  2
## lower                                                                                                                       2
## revenue                                                                                                                     2
## efficient                                                                                                                   2
## electric                                                                                                                    2
## existing                                                                                                                    2
## old                                                                                                                         2
## retrofitting                                                                                                                2
## direct                                                                                                                      2
## obvious                                                                                                                     2
## quest                                                                                                                       2
## take                                                                                                                        2
## towards                                                                                                                     2
## factors                                                                                                                     2
## many                                                                                                                        2
## clouds                                                                                                                      2
## conditions                                                                                                                  2
## daily                                                                                                                       2
## direction                                                                                                                   2
## extremes                                                                                                                    2
## intensity                                                                                                                   2
## like                                                                                                                        2
## normal                                                                                                                      2
## place                                                                                                                       2
## pressure                                                                                                                    2
## cycle                                                                                                                       2
## highpressure                                                                                                                2
## influence                                                                                                                   2
## influenced                                                                                                                  2
## largescale                                                                                                                  2
## maritime                                                                                                                    2
## niño                                                                                                                        2
## small                                                                                                                       2
## continental                                                                                                                 2
## latitude                                                                                                                    2
## moderate                                                                                                                    2
## plains                                                                                                                      2
## plateaus                                                                                                                    2
## southern                                                                                                                    2
## varies                                                                                                                      2
## activity                                                                                                                    2
## arctic                                                                                                                      2
## early                                                                                                                       2
## largest                                                                                                                     2
## snow                                                                                                                        2
## burning                                                                                                                     2
## day                                                                                                                         2
## fertile                                                                                                                     2
## fire                                                                                                                        2
## frequency                                                                                                                   2
## human                                                                                                                       2
## impact                                                                                                                      2
## one                                                                                                                         2
## prairie                                                                                                                     2
## rain                                                                                                                        2
## river                                                                                                                       2
## state                                                                                                                       2
## sumas                                                                                                                       2
## values                                                                                                                      2
## december                                                                                                                    2
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf    2
## variability                                                                                                                 2
## drier                                                                                                                       2
## last                                                                                                                        2
## systemic                                                                                                                    2
## maps                                                                                                                        2
## material                                                                                                                    2
## expectations                                                                                                                2
## module                                                                                                                      2
## notes                                                                                                                       2
## slide                                                                                                                       2
## longterm                                                                                                                    2
## oceans                                                                                                                      2
## stabilize                                                                                                                   2
## acidic                                                                                                                      2
## habitat                                                                                                                     2
## adaptive                                                                                                                    2
## vulnerabilities                                                                                                             2
## pages                                                                                                                       2
## necessary                                                                                                                   2
## themes                                                                                                                      2
## wetlands                                                                                                                    2
## across                                                                                                                      2
## often                                                                                                                       2
## populations                                                                                                                 2
## representative                                                                                                              2
## ministry                                                                                                                    2
## reconciliation                                                                                                              2
## sources                                                                                                                     2
## youth                                                                                                                       2
## cleanenergy                                                                                                                 2
## employment                                                                                                                  2
## force                                                                                                                       2
## remove                                                                                                                      2
## resource                                                                                                                    2
## soil                                                                                                                        2
## storage                                                                                                                     2
## store                                                                                                                       2
## timber                                                                                                                      2
## farms                                                                                                                       2
## flooded                                                                                                                     2
## fraser                                                                                                                      2
## legislation                                                                                                                 2
## manure                                                                                                                      2
## valley                                                                                                                      2
## flood                                                                                                                       2
## preserve                                                                                                                    2
## resources                                                                                                                   2
## bold                                                                                                                        2
## exists                                                                                                                      2
## invest                                                                                                                      2
## competing                                                                                                                   2
## advice                                                                                                                      2
## meet                                                                                                                        2
## track                                                                                                                       2
## causing                                                                                                                     2
## damage                                                                                                                      2
## protests                                                                                                                    2
## affordability                                                                                                               2
## consider                                                                                                                    2
## council                                                                                                                     2
## chiefs                                                                                                                      2
## continued                                                                                                                   2
## ongoing                                                                                                                     2
## without                                                                                                                     2
## rebuild                                                                                                                     2
## using                                                                                                                       2
## list                                                                                                                        2
## foster                                                                                                                      2
## …                                                                                                                           2
## needed                                                                                                                      2
## conclusion                                                                                                                  2
## cabinet                                                                                                                     1
## confidential                                                                                                                1
## considerations                                                                                                              1
## discussion                                                                                                                  1
## tool                                                                                                                        1
## vastly                                                                                                                      1
## activities                                                                                                                  1
## cause                                                                                                                       1
## cooperation                                                                                                                 1
## greenhouse                                                                                                                  1
## humanrelated                                                                                                                1
## lessen                                                                                                                      1
## national                                                                                                                    1
## outlined                                                                                                                    1
## reported                                                                                                                    1
## signed                                                                                                                      1
## surface                                                                                                                     1
## alberta                                                                                                                     1
## boreal                                                                                                                      1
## coastline                                                                                                                   1
## rugged                                                                                                                      1
## stretching                                                                                                                  1
## usa                                                                                                                         1
## categories                                                                                                                  1
## distinct                                                                                                                    1
## divided                                                                                                                     1
## divisions                                                                                                                   1
## numerous                                                                                                                    1
## phsyiographic                                                                                                               1
## plus                                                                                                                        1
## similar                                                                                                                     1
## subareas                                                                                                                    1
## useful                                                                                                                      1
## variety                                                                                                                     1
## aging                                                                                                                       1
## births                                                                                                                      1
## deaths                                                                                                                      1
## decrease                                                                                                                    1
## interprovincial                                                                                                             1
## now                                                                                                                         1
## passed                                                                                                                      1
## populace                                                                                                                    1
## retire                                                                                                                      1
## shows                                                                                                                       1
## slightly                                                                                                                    1
## stats                                                                                                                       1
## working                                                                                                                     1
## age                                                                                                                         1
## comprise                                                                                                                    1
## least                                                                                                                       1
## okanagan                                                                                                                    1
## reserves                                                                                                                    1
## urban                                                                                                                       1
## younger                                                                                                                     1
## cover                                                                                                                       1
## culture                                                                                                                     1
## drivers                                                                                                                     1
## iii                                                                                                                         1
## island                                                                                                                      1
## kootenay                                                                                                                    1
## mainland                                                                                                                    1
## nechako                                                                                                                     1
## northeast                                                                                                                   1
## occur                                                                                                                       1
## occurs                                                                                                                      1
## pipelines                                                                                                                   1
## southwest                                                                                                                   1
## thompsonokanagan                                                                                                            1
## utilities                                                                                                                   1
## vancouver                                                                                                                   1
## decreasing                                                                                                                  1
## domestic                                                                                                                    1
## emitting                                                                                                                    1
## gross                                                                                                                       1
## hydro                                                                                                                       1
## manufacturing                                                                                                               1
## megatons                                                                                                                    1
## product                                                                                                                     1
## service                                                                                                                     1
## acceptance                                                                                                                  1
## access                                                                                                                      1
## authority                                                                                                                   1
## citizens                                                                                                                    1
## creek                                                                                                                       1
## decisionmaking                                                                                                              1
## exercise                                                                                                                    1
## expected                                                                                                                    1
## fairy                                                                                                                       1
## gaslink                                                                                                                     1
## going                                                                                                                       1
## landscape                                                                                                                   1
## pipeline                                                                                                                    1
## protest                                                                                                                     1
## protocol                                                                                                                    1
## right                                                                                                                       1
## undrip                                                                                                                      1
## wet’suwet’en                                                                                                                1
## collaborating                                                                                                               1
## crisis”                                                                                                                     1
## focusing                                                                                                                    1
## followed                                                                                                                    1
## formed                                                                                                                      1
## furthering                                                                                                                  1
## highlighted                                                                                                                 1
## investing                                                                                                                   1
## money                                                                                                                       1
## ndp                                                                                                                         1
## prepare                                                                                                                     1
## prevention                                                                                                                  1
## resilient                                                                                                                   1
## set                                                                                                                         1
## setting                                                                                                                     1
## wildfires                                                                                                                   1
## “climate                                                                                                                    1
## affecting                                                                                                                   1
## affirms                                                                                                                     1
## assessment                                                                                                                  1
## call                                                                                                                        1
## consumption                                                                                                                 1
## currently                                                                                                                   1
## drives                                                                                                                      1
## exceed                                                                                                                      1
## experts                                                                                                                     1
## fall                                                                                                                        1
## life                                                                                                                        1
## likely                                                                                                                      1
## newest                                                                                                                      1
## reductions”                                                                                                                 1
## responsible                                                                                                                 1
## special                                                                                                                     1
## sustainability                                                                                                              1
## understanding                                                                                                               1
## unless                                                                                                                      1
## update                                                                                                                      1
## written                                                                                                                     1
## “deep                                                                                                                       1
## agreed                                                                                                                      1
## binding                                                                                                                     1
## detailed                                                                                                                    1
## legally                                                                                                                     1
## motivated                                                                                                                   1
## preferably                                                                                                                  1
## ratified                                                                                                                    1
## sovereign                                                                                                                   1
## submit                                                                                                                      1
## treaty                                                                                                                      1
## available                                                                                                                   1
## aware                                                                                                                       1
## best                                                                                                                        1
## diversifying                                                                                                                1
## economies                                                                                                                   1
## efforts                                                                                                                     1
## enacting                                                                                                                    1
## evaluating                                                                                                                  1
## financing                                                                                                                   1
## guided                                                                                                                      1
## knowledge“                                                                                                                  1
## mobilizing                                                                                                                  1
## planning                                                                                                                    1
## programs                                                                                                                    1
## responses                                                                                                                   1
## transparent                                                                                                                 1
## unfcc                                                                                                                       1
## vision“                                                                                                                     1
## “                                                                                                                           1
## “longterm                                                                                                                   1
## cutting                                                                                                                     1
## enhanced                                                                                                                    1
## families                                                                                                                    1
## habitats                                                                                                                    1
## household                                                                                                                   1
## innovating                                                                                                                  1
## original                                                                                                                    1
## outlining                                                                                                                   1
## rebates                                                                                                                     1
## respecting                                                                                                                  1
## submitted                                                                                                                   1
## bioeconomy                                                                                                                  1
## climatechange                                                                                                               1
## collecting                                                                                                                  1
## cultivated                                                                                                                  1
## data                                                                                                                        1
## extend                                                                                                                      1
## fisheries                                                                                                                   1
## globally                                                                                                                    1
## map                                                                                                                         1
## preparedness                                                                                                                1
## purposes                                                                                                                    1
## ready                                                                                                                       1
## released                                                                                                                    1
## road                                                                                                                        1
## targeted                                                                                                                    1
## accelerator                                                                                                                 1
## allow                                                                                                                       1
## capped                                                                                                                      1
## cumulatively                                                                                                                1
## offered                                                                                                                     1
## proposals                                                                                                                   1
## reviewed                                                                                                                    1
## america                                                                                                                     1
## applied                                                                                                                     1
## canadians                                                                                                                   1
## credit                                                                                                                      1
## fueltype                                                                                                                    1
## kind                                                                                                                        1
## metric                                                                                                                      1
## middleincome                                                                                                                1
## purchase                                                                                                                    1
## rebated                                                                                                                     1
## solution                                                                                                                    1
## starting                                                                                                                    1
## taxes                                                                                                                       1
## ton                                                                                                                         1
## charging                                                                                                                    1
## deferring                                                                                                                   1
## electrifying                                                                                                                1
## expanding                                                                                                                   1
## installations                                                                                                               1
## passenger                                                                                                                   1
## previously                                                                                                                  1
## promises                                                                                                                    1
## promoting                                                                                                                   1
## pump                                                                                                                        1
## subsidizing                                                                                                                 1
## vehicles                                                                                                                    1
## world                                                                                                                       1
## zeroemission                                                                                                                1
## competitively                                                                                                               1
## final                                                                                                                       1
## leader                                                                                                                      1
## move                                                                                                                        1
## sections                                                                                                                    1
## rest                                                                                                                        1
## “inform                                                                                                                     1
## ”                                                                                                                           1
## analyzing                                                                                                                   1
## impacted                                                                                                                    1
## inform                                                                                                                      1
## understand                                                                                                                  1
## barometric                                                                                                                  1
## common                                                                                                                      1
## difference                                                                                                                  1
## distinguishing                                                                                                              1
## hourly                                                                                                                      1
## influences                                                                                                                  1
## recognize                                                                                                                   1
## seasonally                                                                                                                  1
## speed                                                                                                                       1
## start                                                                                                                       1
## statistical                                                                                                                 1
## variabilities                                                                                                               1
## vary                                                                                                                        1
## alternating                                                                                                                 1
## canada‘s                                                                                                                    1
## climatic                                                                                                                    1
## frostfree                                                                                                                   1
## lots                                                                                                                        1
## lowpressure                                                                                                                 1
## moderating                                                                                                                  1
## multiyear                                                                                                                   1
## periods                                                                                                                     1
## prevailing                                                                                                                  1
## rainfall                                                                                                                    1
## seasonal                                                                                                                    1
## warmest                                                                                                                     1
## west                                                                                                                        1
## winds                                                                                                                       1
## basins                                                                                                                      1
## block                                                                                                                       1
## columbia                                                                                                                    1
## coming                                                                                                                      1
## distance                                                                                                                    1
## distribute                                                                                                                  1
## eastern                                                                                                                     1
## elevation                                                                                                                   1
## exposure                                                                                                                    1
## gradient                                                                                                                    1
## great                                                                                                                       1
## islands                                                                                                                     1
## marine                                                                                                                      1
## masses                                                                                                                      1
## mild                                                                                                                        1
## northsouth                                                                                                                  1
## parallel                                                                                                                    1
## prairies                                                                                                                    1
## separated                                                                                                                   1
## afternoons                                                                                                                  1
## brings                                                                                                                      1
## driest                                                                                                                      1
## dryer                                                                                                                       1
## elevations                                                                                                                  1
## experiences                                                                                                                 1
## generating                                                                                                                  1
## higher                                                                                                                      1
## rainshadow                                                                                                                  1
## range                                                                                                                       1
## side                                                                                                                        1
## slopes                                                                                                                      1
## southcentral                                                                                                                1
## spring                                                                                                                      1
## thunderstorm                                                                                                                1
## valleybottoms                                                                                                               1
## valleys                                                                                                                     1
## westerly                                                                                                                    1
## wet                                                                                                                         1
## days                                                                                                                        1
## declared                                                                                                                    1
## dramatic                                                                                                                    1
## history                                                                                                                     1
## lives                                                                                                                       1
## longest                                                                                                                     1
## recordbreaking                                                                                                              1
## waves                                                                                                                       1
## wild                                                                                                                        1
## worst                                                                                                                       1
## floods                                                                                                                      1
## george                                                                                                                      1
## harbour                                                                                                                     1
## hot                                                                                                                         1
## june                                                                                                                        1
## lytton                                                                                                                      1
## prince                                                                                                                      1
## third                                                                                                                       1
## victoria                                                                                                                    1
## anything                                                                                                                    1
## etal                                                                                                                        1
## glaciers                                                                                                                    1
## mention                                                                                                                     1
## moisture                                                                                                                    1
## page                                                                                                                        1
## spittlehouse                                                                                                                1
## normals                                                                                                                     1
## compared                                                                                                                    1
## norm                                                                                                                        1
## year                                                                                                                        1
## max                                                                                                                         1
## min                                                                                                                         1
## norms                                                                                                                       1
## precip                                                                                                                      1
## temp                                                                                                                        1
## differ                                                                                                                      1
## mean                                                                                                                        1
## planetary                                                                                                                   1
## leading                                                                                                                     1
## jurisdiction                                                                                                                1
## actuaries                                                                                                                   1
## index                                                                                                                       1
## asterix                                                                                                                     1
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                        1
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                           1
## strength                                                                                                                    1
## forecast                                                                                                                    1
## modeled                                                                                                                     1
## prediction                                                                                                                  1
## projection                                                                                                                  1
## see                                                                                                                         1
## httpstwittercomthomasforbcstatuss                                                                                           1
## amount                                                                                                                      1
## drying                                                                                                                      1
## melt                                                                                                                        1
## persistence                                                                                                                 1
## snowpack                                                                                                                    1
## get                                                                                                                         1
## hotter                                                                                                                      1
## summers                                                                                                                     1
## trend                                                                                                                       1
## months                                                                                                                      1
## decadal                                                                                                                     1
## american                                                                                                                    1
## lifetime                                                                                                                    1
## pattern                                                                                                                     1
## amplified                                                                                                                   1
## coincided                                                                                                                   1
## cycles                                                                                                                      1
## series                                                                                                                      1
## imbalance                                                                                                                   1
## increases                                                                                                                   1
## keeping                                                                                                                     1
## relative                                                                                                                    1
## transfer                                                                                                                    1
## •                                                                                                                           1
## affects                                                                                                                     1
## heating                                                                                                                     1
## slowly                                                                                                                      1
## cumulative                                                                                                                  1
## deforestation                                                                                                               1
## esp                                                                                                                         1
## march                                                                                                                       1
## nitrous                                                                                                                     1
## oxide                                                                                                                       1
## httpsbritishcolumbiacombcweatherbc                                                                                          1
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                    1
## httpsopentextbccageographychapterclimateenvironmentbc                                                                       1
## httpsclimatechangecanadacabritishcolumbia                                                                                   1
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                         1
## guiding                                                                                                                     1
## makers                                                                                                                      1
## presented                                                                                                                   1
## scientists                                                                                                                  1
## considers                                                                                                                   1
## bc’                                                                                                                         1
## depends                                                                                                                     1
## grasslands                                                                                                                  1
## healthier                                                                                                                   1
## matter                                                                                                                      1
## nature                                                                                                                      1
## particulate                                                                                                                 1
## retention                                                                                                                   1
## shrubs                                                                                                                      1
## stored                                                                                                                      1
## zone                                                                                                                        1
## ‘beautiful                                                                                                                  1
## accessible                                                                                                                  1
## distributed                                                                                                                 1
## excluded                                                                                                                    1
## inclusive                                                                                                                   1
## inequality                                                                                                                  1
## multiple                                                                                                                    1
## reductions                                                                                                                  1
## spreading                                                                                                                   1
## thus                                                                                                                        1
## consultation                                                                                                                1
## diesel                                                                                                                      1
## generators                                                                                                                  1
## relations                                                                                                                   1
## reliance                                                                                                                    1
## develop                                                                                                                     1
## environments                                                                                                                1
## explore                                                                                                                     1
## inspired                                                                                                                    1
## lowemission                                                                                                                 1
## researchers                                                                                                                 1
## revitalized                                                                                                                 1
## skilled                                                                                                                     1
## smooth                                                                                                                      1
## student                                                                                                                     1
## chance                                                                                                                      1
## cycling                                                                                                                     1
## diversification                                                                                                             1
## managed                                                                                                                     1
## newly                                                                                                                       1
## nutrient                                                                                                                    1
## preservation                                                                                                                1
## purification                                                                                                                1
## recreation                                                                                                                  1
## rethink                                                                                                                     1
## spirituality                                                                                                                1
## stewardship                                                                                                                 1
## tissue                                                                                                                      1
## wildlife                                                                                                                    1
## woody                                                                                                                       1
## abound                                                                                                                      1
## contribution                                                                                                                1
## ensures                                                                                                                     1
## farming                                                                                                                     1
## importing                                                                                                                   1
## preserving                                                                                                                  1
## ranching                                                                                                                    1
## rebuilt                                                                                                                     1
## recently                                                                                                                    1
## reduces                                                                                                                     1
## reserve                                                                                                                     1
## destructive                                                                                                                 1
## environmentally                                                                                                             1
## preparing                                                                                                                   1
## reconstruct                                                                                                                 1
## thrive                                                                                                                      1
## zoning                                                                                                                      1
## cite                                                                                                                        1
## cleaning                                                                                                                    1
## covid                                                                                                                       1
## greatly                                                                                                                     1
## lockdown                                                                                                                    1
## looking                                                                                                                     1
## markets                                                                                                                     1
## pays                                                                                                                        1
## polluter                                                                                                                    1
## principle                                                                                                                   1
## providing                                                                                                                   1
## reassessing                                                                                                                 1
## reevaluate                                                                                                                  1
## something                                                                                                                   1
## try                                                                                                                         1
## interests                                                                                                                   1
## involves                                                                                                                    1
## myriad                                                                                                                      1
## detractors                                                                                                                  1
## measure                                                                                                                     1
## supporters                                                                                                                  1
## highlight                                                                                                                   1
## might                                                                                                                       1
## mitigated                                                                                                                   1
## overcome                                                                                                                    1
## ided                                                                                                                        1
## discuss                                                                                                                     1
## displaced                                                                                                                   1
## communicate                                                                                                                 1
## inspire                                                                                                                     1
## accepting                                                                                                                   1
## comes                                                                                                                       1
## continuing                                                                                                                  1
## directions                                                                                                                  1
## emit                                                                                                                        1
## expensive                                                                                                                   1
## inherent                                                                                                                    1
## paths                                                                                                                       1
## problem                                                                                                                     1
## relying                                                                                                                     1
## researching                                                                                                                 1
## simply                                                                                                                      1
## source                                                                                                                      1
## suggest                                                                                                                     1
## timelines                                                                                                                   1
## unproven                                                                                                                    1
## concerns                                                                                                                    1
## give                                                                                                                        1
## legitimate                                                                                                                  1
## oceans”                                                                                                                     1
## places                                                                                                                      1
## protect                                                                                                                     1
## raised                                                                                                                      1
## shellfish                                                                                                                   1
## shells                                                                                                                      1
## shortterm                                                                                                                   1
## “irreversible                                                                                                               1
## advisory                                                                                                                    1
## advocating                                                                                                                  1
## businesses                                                                                                                  1
## consumers                                                                                                                   1
## disabled                                                                                                                    1
## individual                                                                                                                  1
## member                                                                                                                      1
## missing                                                                                                                     1
## organizations                                                                                                               1
## poverty                                                                                                                     1
## seeking                                                                                                                     1
## accepted                                                                                                                    1
## declaration                                                                                                                 1
## departments                                                                                                                 1
## drip                                                                                                                        1
## engagement                                                                                                                  1
## forms                                                                                                                       1
## governance                                                                                                                  1
## hereditary                                                                                                                  1
## indian                                                                                                                      1
## lands                                                                                                                       1
## peoples                                                                                                                     1
## personnel                                                                                                                   1
## protocols                                                                                                                   1
## reservation                                                                                                                 1
## situated                                                                                                                    1
## territorial                                                                                                                 1
## treaties                                                                                                                    1
## decline                                                                                                                     1
## except                                                                                                                      1
## expansion                                                                                                                   1
## general                                                                                                                     1
## greenenergy                                                                                                                 1
## retirements                                                                                                                 1
## socioeconomic                                                                                                               1
## absorption                                                                                                                  1
## ecoservices                                                                                                                 1
## insect                                                                                                                      1
## pause                                                                                                                       1
## stressed                                                                                                                    1
## system                                                                                                                      1
## techniques                                                                                                                  1
## uncertainty                                                                                                                 1
## unsustainable                                                                                                               1
## addressed                                                                                                                   1
## alternate                                                                                                                   1
## became                                                                                                                      1
## grown                                                                                                                       1
## locally                                                                                                                     1
## prone                                                                                                                       1
## remain                                                                                                                      1
## toxins                                                                                                                      1
## adaption                                                                                                                    1
## anew                                                                                                                        1
## considered                                                                                                                  1
## expense                                                                                                                     1
## farm                                                                                                                        1
## income                                                                                                                      1
## infrastructure”                                                                                                             1
## lost                                                                                                                        1
## policies”                                                                                                                   1
## require                                                                                                                     1
## results                                                                                                                     1
## “ambitious                                                                                                                  1
## “systemic                                                                                                                   1
## comparisons                                                                                                                 1
## previous                                                                                                                    1
## conclusions                                                                                                                 1
## summaryconclude                                                                                                             1
## parts                                                                                                                       1
## open                                                                                                                        1
## paragraph                                                                                                                   1
## parti                                                                                                                       1
## along                                                                                                                       1
## demographic                                                                                                                 1
## varying                                                                                                                     1
## actor                                                                                                                       1
## pick                                                                                                                        1
## fulfillment                                                                                                                 1
## identification                                                                                                              1
## issue                                                                                                                       1
## suggested                                                                                                                   1
## actionoriented                                                                                                              1
## inclusion                                                                                                                   1
## practical                                                                                                                   1
## rationales                                                                                                                  1
## term                                                                                                                        1
## think                                                                                                                       1
## underway                                                                                                                    1
## factor                                                                                                                      1
## consideration                                                                                                               1
## number                                                                                                                      1
## order                                                                                                                       1
## posed                                                                                                                       1
## strategic                                                                                                                   1
## avoid                                                                                                                       1
## linealigned                                                                                                                 1
## sake                                                                                                                        1
## sure                                                                                                                        1
## thought                                                                                                                     1
## wise                                                                                                                        1
## appropriate                                                                                                                 1
## estate                                                                                                                      1
## extraction                                                                                                                  1
## real                                                                                                                        1
## restore                                                                                                                     1
## valuable                                                                                                                    1
## assure                                                                                                                      1
## fair                                                                                                                        1
## finance                                                                                                                     1
## industrial                                                                                                                  1
## just                                                                                                                        1
## supportive                                                                                                                  1
## green                                                                                                                       1
## process                                                                                                                     1
## relationships                                                                                                               1
## together                                                                                                                    1
## carbonfree                                                                                                                  1
## design                                                                                                                      1
## engineer                                                                                                                    1
## innovate                                                                                                                    1
## maintain                                                                                                                    1
## produce                                                                                                                     1
## train                                                                                                                       1
## transitioning                                                                                                               1
## young                                                                                                                       1
## capture                                                                                                                     1
## deciduous                                                                                                                   1
## diverse                                                                                                                     1
## effectively                                                                                                                 1
## firebreak                                                                                                                   1
## functions                                                                                                                   1
## mills                                                                                                                       1
## refit                                                                                                                       1
## smaller                                                                                                                     1
## tree                                                                                                                        1
## compliance                                                                                                                  1
## continuation                                                                                                                1
## enforcement                                                                                                                 1
## equipment                                                                                                                   1
## gaspowered                                                                                                                  1
## innovations                                                                                                                 1
## replace                                                                                                                     1
## demolishing                                                                                                                 1
## don’t                                                                                                                       1
## fireresiliency                                                                                                              1
## focus                                                                                                                       1
## restoring                                                                                                                   1
## risk                                                                                                                        1
## safe                                                                                                                        1
## structures                                                                                                                  1
## updating                                                                                                                    1
## exhaustive                                                                                                                  1
## ‘lens’                                                                                                                      1
## sense                                                                                                                       1
## urgency                                                                                                                     1
## ultimate                                                                                                                    1
## initiating                                                                                                                  1
## lead                                                                                                                        1
## market                                                                                                                      1
## initial                                                                                                                     1
## outline                                                                                                                     1
## refer                                                                                                                       1
## difference’                                                                                                                 1
## know                                                                                                                        1
## recognizing                                                                                                                 1
## ‘make                                                                                                                       1
## honour                                                                                                                      1
## reason                                                                                                                      1
## reports                                                                                                                     1
## taking                                                                                                                      1
## british                                                                                                                     1
## business                                                                                                                    1
## columbians                                                                                                                  1
## ensured                                                                                                                     1
## stewarding                                                                                                                  1
## unique                                                                                                                      1
## vibrant                                                                                                                     1

3.3 Wordcloud - 30 min frequency

# http://www.sthda.com/english/wiki/word-cloud-generator-in-r-one-killer-function-to-do-everything-you-need
source('http://www.sthda.com/upload/rquery_wordcloud.r')
wc <-rquery.wordcloud("EOS365-FinalProject-TextAnalysis.txt", 
                      type ="file", lang = "english", 
                      max.words = 10000, min.freq = 30,
                      colorPalette = "Set1")

wc
## $tdm
## <<TermDocumentMatrix (terms: 1282, documents: 333)>>
## Non-/sparse entries: 2969/423937
## Sparsity           : 99%
## Maximal term length: 120
## Weighting          : term frequency (tf)
## 
## $freqTable
##                                                                                                                                                                                                                                              word
## climate                                                                                                                                                                                                                                   climate
## emissions                                                                                                                                                                                                                               emissions
## bc’s                                                                                                                                                                                                                                         bc’s
## will                                                                                                                                                                                                                                         will
## change                                                                                                                                                                                                                                     change
## reduce                                                                                                                                                                                                                                     reduce
## carbon                                                                                                                                                                                                                                     carbon
## help                                                                                                                                                                                                                                         help
## regions                                                                                                                                                                                                                                   regions
## ghg                                                                                                                                                                                                                                           ghg
## action                                                                                                                                                                                                                                     action
## future                                                                                                                                                                                                                                     future
## indigenous                                                                                                                                                                                                                             indigenous
## challenges                                                                                                                                                                                                                             challenges
## weather                                                                                                                                                                                                                                   weather
## temperature                                                                                                                                                                                                                           temperature
## also                                                                                                                                                                                                                                         also
## industry                                                                                                                                                                                                                                 industry
## opportunity                                                                                                                                                                                                                           opportunity
## changing                                                                                                                                                                                                                                 changing
## social                                                                                                                                                                                                                                     social
## economic                                                                                                                                                                                                                                 economic
## building                                                                                                                                                                                                                                 building
## opportunities                                                                                                                                                                                                                       opportunities
## recommendations                                                                                                                                                                                                                   recommendations
## new                                                                                                                                                                                                                                           new
## mitigation                                                                                                                                                                                                                             mitigation
## gas                                                                                                                                                                                                                                           gas
## including                                                                                                                                                                                                                               including
## paris                                                                                                                                                                                                                                       paris
## provincial                                                                                                                                                                                                                             provincial
## canada’s                                                                                                                                                                                                                                 canada’s
## land                                                                                                                                                                                                                                         land
## development                                                                                                                                                                                                                           development
## energy                                                                                                                                                                                                                                     energy
## reducing                                                                                                                                                                                                                                 reducing
## words                                                                                                                                                                                                                                       words
## –                                                                                                                                                                                                                                               –
## can                                                                                                                                                                                                                                           can
## strategies                                                                                                                                                                                                                             strategies
## global                                                                                                                                                                                                                                     global
## increased                                                                                                                                                                                                                               increased
## agriculture                                                                                                                                                                                                                           agriculture
## natural                                                                                                                                                                                                                                   natural
## need                                                                                                                                                                                                                                         need
## skills                                                                                                                                                                                                                                     skills
## recommendation                                                                                                                                                                                                                     recommendation
## food                                                                                                                                                                                                                                         food
## supporting                                                                                                                                                                                                                             supporting
## changes                                                                                                                                                                                                                                   changes
## challenge                                                                                                                                                                                                                               challenge
## forests                                                                                                                                                                                                                                   forests
## communities                                                                                                                                                                                                                           communities
## adaptation                                                                                                                                                                                                                             adaptation
## clean                                                                                                                                                                                                                                       clean
## technology                                                                                                                                                                                                                             technology
## benefits                                                                                                                                                                                                                                 benefits
## provide                                                                                                                                                                                                                                   provide
## events                                                                                                                                                                                                                                     events
## different                                                                                                                                                                                                                               different
## people                                                                                                                                                                                                                                     people
## political                                                                                                                                                                                                                               political
## ipcc                                                                                                                                                                                                                                         ipcc
## growth                                                                                                                                                                                                                                     growth
## region                                                                                                                                                                                                                                     region
## interior                                                                                                                                                                                                                                 interior
## buildings                                                                                                                                                                                                                               buildings
## oil                                                                                                                                                                                                                                           oil
## transportation                                                                                                                                                                                                                     transportation
## protecting                                                                                                                                                                                                                             protecting
## training                                                                                                                                                                                                                                 training
## agreement                                                                                                                                                                                                                               agreement
## integrity                                                                                                                                                                                                                               integrity
## well                                                                                                                                                                                                                                         well
## section                                                                                                                                                                                                                                   section
## extreme                                                                                                                                                                                                                                   extreme
## air                                                                                                                                                                                                                                           air
## environmental                                                                                                                                                                                                                       environmental
## needs                                                                                                                                                                                                                                       needs
## support                                                                                                                                                                                                                                   support
## ocean                                                                                                                                                                                                                                       ocean
## biodiversity                                                                                                                                                                                                                         biodiversity
## include                                                                                                                                                                                                                                   include
## increasing                                                                                                                                                                                                                             increasing
## first                                                                                                                                                                                                                                       first
## urgent                                                                                                                                                                                                                                     urgent
## commitments                                                                                                                                                                                                                           commitments
## capacity                                                                                                                                                                                                                                 capacity
## security                                                                                                                                                                                                                                 security
## ecological                                                                                                                                                                                                                             ecological
## lowcarbon                                                                                                                                                                                                                               lowcarbon
## atmospheric                                                                                                                                                                                                                           atmospheric
## services                                                                                                                                                                                                                                 services
## analysis                                                                                                                                                                                                                                 analysis
## report                                                                                                                                                                                                                                     report
## cleanbc                                                                                                                                                                                                                                   cleanbc
## ndc                                                                                                                                                                                                                                           ndc
## mountains                                                                                                                                                                                                                               mountains
## regional                                                                                                                                                                                                                                 regional
## groups                                                                                                                                                                                                                                     groups
## north                                                                                                                                                                                                                                       north
## potential                                                                                                                                                                                                                               potential
## coastal                                                                                                                                                                                                                                   coastal
## adapt                                                                                                                                                                                                                                       adapt
## commitment                                                                                                                                                                                                                             commitment
## past                                                                                                                                                                                                                                         past
## since                                                                                                                                                                                                                                       since
## climates                                                                                                                                                                                                                                 climates
## find                                                                                                                                                                                                                                         find
## levels                                                                                                                                                                                                                                     levels
## °c                                                                                                                                                                                                                                             °c
## temperatures                                                                                                                                                                                                                         temperatures
## years                                                                                                                                                                                                                                       years
## ensuring                                                                                                                                                                                                                                 ensuring
## equity                                                                                                                                                                                                                                     equity
## precipitation                                                                                                                                                                                                                       precipitation
## summary                                                                                                                                                                                                                                   summary
## systems                                                                                                                                                                                                                                   systems
## century                                                                                                                                                                                                                                   century
## incorporate                                                                                                                                                                                                                           incorporate
## solutions                                                                                                                                                                                                                               solutions
## water                                                                                                                                                                                                                                       water
## ensure                                                                                                                                                                                                                                     ensure
## important                                                                                                                                                                                                                               important
## accord                                                                                                                                                                                                                                     accord
## address                                                                                                                                                                                                                                   address
## canada                                                                                                                                                                                                                                     canada
## impacts                                                                                                                                                                                                                                   impacts
## international                                                                                                                                                                                                                       international
## warming                                                                                                                                                                                                                                   warming
## pacific                                                                                                                                                                                                                                   pacific
## province                                                                                                                                                                                                                                 province
## south                                                                                                                                                                                                                                       south
## health                                                                                                                                                                                                                                     health
## population                                                                                                                                                                                                                             population
## result                                                                                                                                                                                                                                     result
## though                                                                                                                                                                                                                                     though
## within                                                                                                                                                                                                                                     within
## forestry                                                                                                                                                                                                                                 forestry
## key                                                                                                                                                                                                                                           key
## sectors                                                                                                                                                                                                                                   sectors
## actions                                                                                                                                                                                                                                   actions
## continue                                                                                                                                                                                                                                 continue
## local                                                                                                                                                                                                                                       local
## based                                                                                                                                                                                                                                       based
## flooding                                                                                                                                                                                                                                 flooding
## canadian                                                                                                                                                                                                                                 canadian
## goals                                                                                                                                                                                                                                       goals
## time                                                                                                                                                                                                                                         time
## jobs                                                                                                                                                                                                                                         jobs
## economy                                                                                                                                                                                                                                   economy
## forest                                                                                                                                                                                                                                     forest
## fulfill                                                                                                                                                                                                                                   fulfill
## reduction                                                                                                                                                                                                                               reduction
## innovative                                                                                                                                                                                                                             innovative
## mitigate                                                                                                                                                                                                                                 mitigate
## policy                                                                                                                                                                                                                                     policy
## trees                                                                                                                                                                                                                                       trees
## become                                                                                                                                                                                                                                     become
## work                                                                                                                                                                                                                                         work
## make                                                                                                                                                                                                                                         make
## communication                                                                                                                                                                                                                       communication
## copied                                                                                                                                                                                                                                     copied
## edited                                                                                                                                                                                                                                     edited
## managing                                                                                                                                                                                                                                 managing
## still                                                                                                                                                                                                                                       still
## part                                                                                                                                                                                                                                         part
## contribute                                                                                                                                                                                                                             contribute
## live                                                                                                                                                                                                                                         live
## respond                                                                                                                                                                                                                                   respond
## accelerated                                                                                                                                                                                                                           accelerated
## plan                                                                                                                                                                                                                                         plan
## area                                                                                                                                                                                                                                         area
## mountain                                                                                                                                                                                                                                 mountain
## northern                                                                                                                                                                                                                                 northern
## total                                                                                                                                                                                                                                       total
## creating                                                                                                                                                                                                                                 creating
## districts                                                                                                                                                                                                                               districts
## high                                                                                                                                                                                                                                         high
## use                                                                                                                                                                                                                                           use
## increase                                                                                                                                                                                                                                 increase
## less                                                                                                                                                                                                                                         less
## may                                                                                                                                                                                                                                           may
## projected                                                                                                                                                                                                                               projected
## workers                                                                                                                                                                                                                                   workers
## central                                                                                                                                                                                                                                   central
## experienced                                                                                                                                                                                                                           experienced
## coast                                                                                                                                                                                                                                       coast
## gdp                                                                                                                                                                                                                                           gdp
## government                                                                                                                                                                                                                             government
## recent                                                                                                                                                                                                                                     recent
## financial                                                                                                                                                                                                                               financial
## recovery                                                                                                                                                                                                                                 recovery
## wildfire                                                                                                                                                                                                                                 wildfire
## balance                                                                                                                                                                                                                                   balance
## healthy                                                                                                                                                                                                                                   healthy
## rise                                                                                                                                                                                                                                         rise
## effects                                                                                                                                                                                                                                   effects
## knowledge                                                                                                                                                                                                                               knowledge
## resilience                                                                                                                                                                                                                             resilience
## traditional                                                                                                                                                                                                                           traditional
## competitive                                                                                                                                                                                                                           competitive
## emission                                                                                                                                                                                                                                 emission
## encourage                                                                                                                                                                                                                               encourage
## fuel                                                                                                                                                                                                                                         fuel
## tax                                                                                                                                                                                                                                           tax
## costs                                                                                                                                                                                                                                       costs
## sector                                                                                                                                                                                                                                     sector
## workforce                                                                                                                                                                                                                               workforce
## becoming                                                                                                                                                                                                                                 becoming
## patterns                                                                                                                                                                                                                                 patterns
## period                                                                                                                                                                                                                                     period
## summer                                                                                                                                                                                                                                     summer
## winter                                                                                                                                                                                                                                     winter
## cold                                                                                                                                                                                                                                         cold
## warm                                                                                                                                                                                                                                         warm
## wetter                                                                                                                                                                                                                                     wetter
## fires                                                                                                                                                                                                                                       fires
## observed                                                                                                                                                                                                                                 observed
## look                                                                                                                                                                                                                                         look
## lecture                                                                                                                                                                                                                                   lecture
##                                                                                                                                                                                                                                                
## methane                                                                                                                                                                                                                                   methane
## offer                                                                                                                                                                                                                                       offer
## build                                                                                                                                                                                                                                       build
## rebuilding                                                                                                                                                                                                                             rebuilding
## way                                                                                                                                                                                                                                           way
## intro                                                                                                                                                                                                                                       intro
## background                                                                                                                                                                                                                             background
## developing                                                                                                                                                                                                                             developing
## geographic                                                                                                                                                                                                                             geographic
## includes                                                                                                                                                                                                                                 includes
## industries                                                                                                                                                                                                                             industries
## information                                                                                                                                                                                                                           information
## used                                                                                                                                                                                                                                         used
## created                                                                                                                                                                                                                                   created
## dioxide                                                                                                                                                                                                                                   dioxide
## earth’s                                                                                                                                                                                                                                   earth’s
## issues                                                                                                                                                                                                                                     issues
## obligations                                                                                                                                                                                                                           obligations
## roadmap                                                                                                                                                                                                                                   roadmap
## crown                                                                                                                                                                                                                                       crown
## east                                                                                                                                                                                                                                         east
## hectares                                                                                                                                                                                                                                 hectares
## million                                                                                                                                                                                                                                   million
## ranges                                                                                                                                                                                                                                     ranges
## western                                                                                                                                                                                                                                   western
## biogeoclimatic                                                                                                                                                                                                                     biogeoclimatic
## manage                                                                                                                                                                                                                                     manage
## vegetation                                                                                                                                                                                                                             vegetation
## demographics                                                                                                                                                                                                                         demographics
## areas                                                                                                                                                                                                                                       areas
## territories                                                                                                                                                                                                                           territories
## dry                                                                                                                                                                                                                                           dry
## geography                                                                                                                                                                                                                               geography
## construction                                                                                                                                                                                                                         construction
## logging                                                                                                                                                                                                                                   logging
## prior                                                                                                                                                                                                                                       prior
## rights                                                                                                                                                                                                                                     rights
## cpas                                                                                                                                                                                                                                         cpas
## following                                                                                                                                                                                                                               following
## infrastructure                                                                                                                                                                                                                     infrastructure
## nations                                                                                                                                                                                                                                   nations
## next                                                                                                                                                                                                                                         next
## plans                                                                                                                                                                                                                                       plans
## policies                                                                                                                                                                                                                                 policies
## targets                                                                                                                                                                                                                                   targets
## affordable                                                                                                                                                                                                                             affordable
## innovation                                                                                                                                                                                                                             innovation
## keep                                                                                                                                                                                                                                         keep
## limit                                                                                                                                                                                                                                       limit
## made                                                                                                                                                                                                                                         made
## preindustrial                                                                                                                                                                                                                       preindustrial
## production                                                                                                                                                                                                                             production
## sustainable                                                                                                                                                                                                                           sustainable
## every                                                                                                                                                                                                                                       every
## reduced                                                                                                                                                                                                                                   reduced
## education                                                                                                                                                                                                                               education
## encouraging                                                                                                                                                                                                                           encouraging
## equitable                                                                                                                                                                                                                               equitable
## experience                                                                                                                                                                                                                             experience
## incorporating                                                                                                                                                                                                                       incorporating
## learning                                                                                                                                                                                                                                 learning
## taken                                                                                                                                                                                                                                       taken
## creation                                                                                                                                                                                                                                 creation
## goal                                                                                                                                                                                                                                         goal
## homes                                                                                                                                                                                                                                       homes
## increasingly                                                                                                                                                                                                                         increasingly
## per                                                                                                                                                                                                                                           per
## pollution                                                                                                                                                                                                                               pollution
## beyond                                                                                                                                                                                                                                     beyond
## community                                                                                                                                                                                                                               community
## create                                                                                                                                                                                                                                     create
## ecosystem                                                                                                                                                                                                                               ecosystem
## helping                                                                                                                                                                                                                                   helping
## strategy                                                                                                                                                                                                                                 strategy
## technologies                                                                                                                                                                                                                         technologies
## fund                                                                                                                                                                                                                                         fund
## projects                                                                                                                                                                                                                                 projects
## research                                                                                                                                                                                                                                 research
## incentives                                                                                                                                                                                                                             incentives
## large                                                                                                                                                                                                                                       large
## heat                                                                                                                                                                                                                                         heat
## continues                                                                                                                                                                                                                               continues
## present                                                                                                                                                                                                                                   present
## variations                                                                                                                                                                                                                             variations
## averages                                                                                                                                                                                                                                 averages
## duration                                                                                                                                                                                                                                 duration
## wind                                                                                                                                                                                                                                         wind
## associated                                                                                                                                                                                                                             associated
## atmosphere                                                                                                                                                                                                                             atmosphere
## circulation                                                                                                                                                                                                                           circulation
## flow                                                                                                                                                                                                                                         flow
## good                                                                                                                                                                                                                                         good
## long                                                                                                                                                                                                                                         long
## season                                                                                                                                                                                                                                     season
## agricultural                                                                                                                                                                                                                         agricultural
## drought                                                                                                                                                                                                                                   drought
## emergency                                                                                                                                                                                                                               emergency
## november                                                                                                                                                                                                                                 november
## resulting                                                                                                                                                                                                                               resulting
## locations                                                                                                                                                                                                                               locations
## record                                                                                                                                                                                                                                     record
## recorded                                                                                                                                                                                                                                 recorded
## average                                                                                                                                                                                                                                   average
## current                                                                                                                                                                                                                                   current
## environment                                                                                                                                                                                                                           environment
## trends                                                                                                                                                                                                                                     trends
## summarize                                                                                                                                                                                                                               summarize
## check                                                                                                                                                                                                                                       check
## oscillation                                                                                                                                                                                                                           oscillation
## effect                                                                                                                                                                                                                                     effect
## ability                                                                                                                                                                                                                                   ability
## species                                                                                                                                                                                                                                   species
## landuse                                                                                                                                                                                                                                   landuse
## already                                                                                                                                                                                                                                   already
## developed                                                                                                                                                                                                                               developed
## creative                                                                                                                                                                                                                                 creative
## affect                                                                                                                                                                                                                                     affect
## nature’s                                                                                                                                                                                                                                 nature’s
## addressing                                                                                                                                                                                                                             addressing
## growing                                                                                                                                                                                                                                   growing
## transition                                                                                                                                                                                                                             transition
## instead                                                                                                                                                                                                                                   instead
## ways                                                                                                                                                                                                                                         ways
## codes                                                                                                                                                                                                                                       codes
## quality                                                                                                                                                                                                                                   quality
## plant                                                                                                                                                                                                                                       plant
## led                                                                                                                                                                                                                                           led
## introduction                                                                                                                                                                                                                         introduction
## brief                                                                                                                                                                                                                                       brief
## description                                                                                                                                                                                                                           description
## economically                                                                                                                                                                                                                         economically
## offers                                                                                                                                                                                                                                     offers
## due                                                                                                                                                                                                                                           due
## especially                                                                                                                                                                                                                             especially
## intergovernmental                                                                                                                                                                                                               intergovernmental
## panel                                                                                                                                                                                                                                       panel
## pathways                                                                                                                                                                                                                                 pathways
## required                                                                                                                                                                                                                                 required
## border                                                                                                                                                                                                                                     border
## rocky                                                                                                                                                                                                                                       rocky
## authorities                                                                                                                                                                                                                           authorities
## census                                                                                                                                                                                                                                     census
## ecosystems                                                                                                                                                                                                                             ecosystems
## geopolitical                                                                                                                                                                                                                         geopolitical
## macroclimate                                                                                                                                                                                                                         macroclimate
## municipalities                                                                                                                                                                                                                     municipalities
## school                                                                                                                                                                                                                                     school
## subdivisions                                                                                                                                                                                                                         subdivisions
## zones                                                                                                                                                                                                                                       zones
## ages                                                                                                                                                                                                                                         ages
## depending                                                                                                                                                                                                                               depending
## fewer                                                                                                                                                                                                                                       fewer
## migration                                                                                                                                                                                                                               migration
## senior                                                                                                                                                                                                                                     senior
## cities                                                                                                                                                                                                                                     cities
## mostly                                                                                                                                                                                                                                     mostly
## nation                                                                                                                                                                                                                                     nation
## rural                                                                                                                                                                                                                                       rural
## towns                                                                                                                                                                                                                                       towns
## villages                                                                                                                                                                                                                                 villages
## cariboo                                                                                                                                                                                                                                   cariboo
## mining                                                                                                                                                                                                                                     mining
## plateau                                                                                                                                                                                                                                   plateau
## private                                                                                                                                                                                                                                   private
## remote                                                                                                                                                                                                                                     remote
## specific                                                                                                                                                                                                                                 specific
## tourism                                                                                                                                                                                                                                   tourism
## contributes                                                                                                                                                                                                                           contributes
## consent                                                                                                                                                                                                                                   consent
## examples                                                                                                                                                                                                                                 examples
## forward                                                                                                                                                                                                                                   forward
## free                                                                                                                                                                                                                                         free
## informed                                                                                                                                                                                                                                 informed
## much                                                                                                                                                                                                                                         much
## oldgrowth                                                                                                                                                                                                                               oldgrowth
## subsidies                                                                                                                                                                                                                               subsidies
## territory                                                                                                                                                                                                                               territory
## unceded                                                                                                                                                                                                                                   unceded
## accomplishments                                                                                                                                                                                                                   accomplishments
## agreements                                                                                                                                                                                                                             agreements
## backdrop                                                                                                                                                                                                                                 backdrop
## budget                                                                                                                                                                                                                                     budget
## election                                                                                                                                                                                                                                 election
## federal                                                                                                                                                                                                                                   federal
## liberal                                                                                                                                                                                                                                   liberal
## majority                                                                                                                                                                                                                                 majority
## making                                                                                                                                                                                                                                     making
## management                                                                                                                                                                                                                             management
## minority                                                                                                                                                                                                                                 minority
## responsibilities                                                                                                                                                                                                                 responsibilities
## reviewing                                                                                                                                                                                                                               reviewing
## speech                                                                                                                                                                                                                                     speech
## throne                                                                                                                                                                                                                                     throne
## equality                                                                                                                                                                                                                                 equality
## netzero                                                                                                                                                                                                                                   netzero
## ppm                                                                                                                                                                                                                                           ppm
## states                                                                                                                                                                                                                                     states
## contributions                                                                                                                                                                                                                       contributions
## c°                                                                                                                                                                                                                                             c°
## determined                                                                                                                                                                                                                             determined
## nationally                                                                                                                                                                                                                             nationally
## rising                                                                                                                                                                                                                                     rising
## ambitious                                                                                                                                                                                                                               ambitious
## balancing                                                                                                                                                                                                                               balancing
## considering                                                                                                                                                                                                                           considering
## effective                                                                                                                                                                                                                               effective
## monitoring                                                                                                                                                                                                                             monitoring
## participation                                                                                                                                                                                                                       participation
## public                                                                                                                                                                                                                                     public
## rapidly                                                                                                                                                                                                                                   rapidly
## risks                                                                                                                                                                                                                                       risks
## scientific                                                                                                                                                                                                                             scientific
## technological                                                                                                                                                                                                                       technological
## vulnerable                                                                                                                                                                                                                             vulnerable
## adapting                                                                                                                                                                                                                                 adapting
## advantage                                                                                                                                                                                                                               advantage
## job                                                                                                                                                                                                                                           job
## pricing                                                                                                                                                                                                                                   pricing
## waste                                                                                                                                                                                                                                       waste
## economics                                                                                                                                                                                                                               economics
## low                                                                                                                                                                                                                                           low
## negative                                                                                                                                                                                                                                 negative
## partnerships                                                                                                                                                                                                                         partnerships
## consumer                                                                                                                                                                                                                                 consumer
## fossil                                                                                                                                                                                                                                     fossil
## introduced                                                                                                                                                                                                                             introduced
## lower                                                                                                                                                                                                                                       lower
## revenue                                                                                                                                                                                                                                   revenue
## efficient                                                                                                                                                                                                                               efficient
## electric                                                                                                                                                                                                                                 electric
## existing                                                                                                                                                                                                                                 existing
## old                                                                                                                                                                                                                                           old
## retrofitting                                                                                                                                                                                                                         retrofitting
## direct                                                                                                                                                                                                                                     direct
## obvious                                                                                                                                                                                                                                   obvious
## quest                                                                                                                                                                                                                                       quest
## take                                                                                                                                                                                                                                         take
## towards                                                                                                                                                                                                                                   towards
## factors                                                                                                                                                                                                                                   factors
## many                                                                                                                                                                                                                                         many
## clouds                                                                                                                                                                                                                                     clouds
## conditions                                                                                                                                                                                                                             conditions
## daily                                                                                                                                                                                                                                       daily
## direction                                                                                                                                                                                                                               direction
## extremes                                                                                                                                                                                                                                 extremes
## intensity                                                                                                                                                                                                                               intensity
## like                                                                                                                                                                                                                                         like
## normal                                                                                                                                                                                                                                     normal
## place                                                                                                                                                                                                                                       place
## pressure                                                                                                                                                                                                                                 pressure
## cycle                                                                                                                                                                                                                                       cycle
## highpressure                                                                                                                                                                                                                         highpressure
## influence                                                                                                                                                                                                                               influence
## influenced                                                                                                                                                                                                                             influenced
## largescale                                                                                                                                                                                                                             largescale
## maritime                                                                                                                                                                                                                                 maritime
## niño                                                                                                                                                                                                                                         niño
## small                                                                                                                                                                                                                                       small
## continental                                                                                                                                                                                                                           continental
## latitude                                                                                                                                                                                                                                 latitude
## moderate                                                                                                                                                                                                                                 moderate
## plains                                                                                                                                                                                                                                     plains
## plateaus                                                                                                                                                                                                                                 plateaus
## southern                                                                                                                                                                                                                                 southern
## varies                                                                                                                                                                                                                                     varies
## activity                                                                                                                                                                                                                                 activity
## arctic                                                                                                                                                                                                                                     arctic
## early                                                                                                                                                                                                                                       early
## largest                                                                                                                                                                                                                                   largest
## snow                                                                                                                                                                                                                                         snow
## burning                                                                                                                                                                                                                                   burning
## day                                                                                                                                                                                                                                           day
## fertile                                                                                                                                                                                                                                   fertile
## fire                                                                                                                                                                                                                                         fire
## frequency                                                                                                                                                                                                                               frequency
## human                                                                                                                                                                                                                                       human
## impact                                                                                                                                                                                                                                     impact
## one                                                                                                                                                                                                                                           one
## prairie                                                                                                                                                                                                                                   prairie
## rain                                                                                                                                                                                                                                         rain
## river                                                                                                                                                                                                                                       river
## state                                                                                                                                                                                                                                       state
## sumas                                                                                                                                                                                                                                       sumas
## values                                                                                                                                                                                                                                     values
## december                                                                                                                                                                                                                                 december
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf
## variability                                                                                                                                                                                                                           variability
## drier                                                                                                                                                                                                                                       drier
## last                                                                                                                                                                                                                                         last
## systemic                                                                                                                                                                                                                                 systemic
## maps                                                                                                                                                                                                                                         maps
## material                                                                                                                                                                                                                                 material
## expectations                                                                                                                                                                                                                         expectations
## module                                                                                                                                                                                                                                     module
## notes                                                                                                                                                                                                                                       notes
## slide                                                                                                                                                                                                                                       slide
## longterm                                                                                                                                                                                                                                 longterm
## oceans                                                                                                                                                                                                                                     oceans
## stabilize                                                                                                                                                                                                                               stabilize
## acidic                                                                                                                                                                                                                                     acidic
## habitat                                                                                                                                                                                                                                   habitat
## adaptive                                                                                                                                                                                                                                 adaptive
## vulnerabilities                                                                                                                                                                                                                   vulnerabilities
## pages                                                                                                                                                                                                                                       pages
## necessary                                                                                                                                                                                                                               necessary
## themes                                                                                                                                                                                                                                     themes
## wetlands                                                                                                                                                                                                                                 wetlands
## across                                                                                                                                                                                                                                     across
## often                                                                                                                                                                                                                                       often
## populations                                                                                                                                                                                                                           populations
## representative                                                                                                                                                                                                                     representative
## ministry                                                                                                                                                                                                                                 ministry
## reconciliation                                                                                                                                                                                                                     reconciliation
## sources                                                                                                                                                                                                                                   sources
## youth                                                                                                                                                                                                                                       youth
## cleanenergy                                                                                                                                                                                                                           cleanenergy
## employment                                                                                                                                                                                                                             employment
## force                                                                                                                                                                                                                                       force
## remove                                                                                                                                                                                                                                     remove
## resource                                                                                                                                                                                                                                 resource
## soil                                                                                                                                                                                                                                         soil
## storage                                                                                                                                                                                                                                   storage
## store                                                                                                                                                                                                                                       store
## timber                                                                                                                                                                                                                                     timber
## farms                                                                                                                                                                                                                                       farms
## flooded                                                                                                                                                                                                                                   flooded
## fraser                                                                                                                                                                                                                                     fraser
## legislation                                                                                                                                                                                                                           legislation
## manure                                                                                                                                                                                                                                     manure
## valley                                                                                                                                                                                                                                     valley
## flood                                                                                                                                                                                                                                       flood
## preserve                                                                                                                                                                                                                                 preserve
## resources                                                                                                                                                                                                                               resources
## bold                                                                                                                                                                                                                                         bold
## exists                                                                                                                                                                                                                                     exists
## invest                                                                                                                                                                                                                                     invest
## competing                                                                                                                                                                                                                               competing
## advice                                                                                                                                                                                                                                     advice
## meet                                                                                                                                                                                                                                         meet
## track                                                                                                                                                                                                                                       track
## causing                                                                                                                                                                                                                                   causing
## damage                                                                                                                                                                                                                                     damage
## protests                                                                                                                                                                                                                                 protests
## affordability                                                                                                                                                                                                                       affordability
## consider                                                                                                                                                                                                                                 consider
## council                                                                                                                                                                                                                                   council
## chiefs                                                                                                                                                                                                                                     chiefs
## continued                                                                                                                                                                                                                               continued
## ongoing                                                                                                                                                                                                                                   ongoing
## without                                                                                                                                                                                                                                   without
## rebuild                                                                                                                                                                                                                                   rebuild
## using                                                                                                                                                                                                                                       using
## list                                                                                                                                                                                                                                         list
## foster                                                                                                                                                                                                                                     foster
## …                                                                                                                                                                                                                                               …
## needed                                                                                                                                                                                                                                     needed
## conclusion                                                                                                                                                                                                                             conclusion
## cabinet                                                                                                                                                                                                                                   cabinet
## confidential                                                                                                                                                                                                                         confidential
## considerations                                                                                                                                                                                                                     considerations
## discussion                                                                                                                                                                                                                             discussion
## tool                                                                                                                                                                                                                                         tool
## vastly                                                                                                                                                                                                                                     vastly
## activities                                                                                                                                                                                                                             activities
## cause                                                                                                                                                                                                                                       cause
## cooperation                                                                                                                                                                                                                           cooperation
## greenhouse                                                                                                                                                                                                                             greenhouse
## humanrelated                                                                                                                                                                                                                         humanrelated
## lessen                                                                                                                                                                                                                                     lessen
## national                                                                                                                                                                                                                                 national
## outlined                                                                                                                                                                                                                                 outlined
## reported                                                                                                                                                                                                                                 reported
## signed                                                                                                                                                                                                                                     signed
## surface                                                                                                                                                                                                                                   surface
## alberta                                                                                                                                                                                                                                   alberta
## boreal                                                                                                                                                                                                                                     boreal
## coastline                                                                                                                                                                                                                               coastline
## rugged                                                                                                                                                                                                                                     rugged
## stretching                                                                                                                                                                                                                             stretching
## usa                                                                                                                                                                                                                                           usa
## categories                                                                                                                                                                                                                             categories
## distinct                                                                                                                                                                                                                                 distinct
## divided                                                                                                                                                                                                                                   divided
## divisions                                                                                                                                                                                                                               divisions
## numerous                                                                                                                                                                                                                                 numerous
## phsyiographic                                                                                                                                                                                                                       phsyiographic
## plus                                                                                                                                                                                                                                         plus
## similar                                                                                                                                                                                                                                   similar
## subareas                                                                                                                                                                                                                                 subareas
## useful                                                                                                                                                                                                                                     useful
## variety                                                                                                                                                                                                                                   variety
## aging                                                                                                                                                                                                                                       aging
## births                                                                                                                                                                                                                                     births
## deaths                                                                                                                                                                                                                                     deaths
## decrease                                                                                                                                                                                                                                 decrease
## interprovincial                                                                                                                                                                                                                   interprovincial
## now                                                                                                                                                                                                                                           now
## passed                                                                                                                                                                                                                                     passed
## populace                                                                                                                                                                                                                                 populace
## retire                                                                                                                                                                                                                                     retire
## shows                                                                                                                                                                                                                                       shows
## slightly                                                                                                                                                                                                                                 slightly
## stats                                                                                                                                                                                                                                       stats
## working                                                                                                                                                                                                                                   working
## age                                                                                                                                                                                                                                           age
## comprise                                                                                                                                                                                                                                 comprise
## least                                                                                                                                                                                                                                       least
## okanagan                                                                                                                                                                                                                                 okanagan
## reserves                                                                                                                                                                                                                                 reserves
## urban                                                                                                                                                                                                                                       urban
## younger                                                                                                                                                                                                                                   younger
## cover                                                                                                                                                                                                                                       cover
## culture                                                                                                                                                                                                                                   culture
## drivers                                                                                                                                                                                                                                   drivers
## iii                                                                                                                                                                                                                                           iii
## island                                                                                                                                                                                                                                     island
## kootenay                                                                                                                                                                                                                                 kootenay
## mainland                                                                                                                                                                                                                                 mainland
## nechako                                                                                                                                                                                                                                   nechako
## northeast                                                                                                                                                                                                                               northeast
## occur                                                                                                                                                                                                                                       occur
## occurs                                                                                                                                                                                                                                     occurs
## pipelines                                                                                                                                                                                                                               pipelines
## southwest                                                                                                                                                                                                                               southwest
## thompsonokanagan                                                                                                                                                                                                                 thompsonokanagan
## utilities                                                                                                                                                                                                                               utilities
## vancouver                                                                                                                                                                                                                               vancouver
## decreasing                                                                                                                                                                                                                             decreasing
## domestic                                                                                                                                                                                                                                 domestic
## emitting                                                                                                                                                                                                                                 emitting
## gross                                                                                                                                                                                                                                       gross
## hydro                                                                                                                                                                                                                                       hydro
## manufacturing                                                                                                                                                                                                                       manufacturing
## megatons                                                                                                                                                                                                                                 megatons
## product                                                                                                                                                                                                                                   product
## service                                                                                                                                                                                                                                   service
## acceptance                                                                                                                                                                                                                             acceptance
## access                                                                                                                                                                                                                                     access
## authority                                                                                                                                                                                                                               authority
## citizens                                                                                                                                                                                                                                 citizens
## creek                                                                                                                                                                                                                                       creek
## decisionmaking                                                                                                                                                                                                                     decisionmaking
## exercise                                                                                                                                                                                                                                 exercise
## expected                                                                                                                                                                                                                                 expected
## fairy                                                                                                                                                                                                                                       fairy
## gaslink                                                                                                                                                                                                                                   gaslink
## going                                                                                                                                                                                                                                       going
## landscape                                                                                                                                                                                                                               landscape
## pipeline                                                                                                                                                                                                                                 pipeline
## protest                                                                                                                                                                                                                                   protest
## protocol                                                                                                                                                                                                                                 protocol
## right                                                                                                                                                                                                                                       right
## undrip                                                                                                                                                                                                                                     undrip
## wet’suwet’en                                                                                                                                                                                                                         wet’suwet’en
## collaborating                                                                                                                                                                                                                       collaborating
## crisis”                                                                                                                                                                                                                                   crisis”
## focusing                                                                                                                                                                                                                                 focusing
## followed                                                                                                                                                                                                                                 followed
## formed                                                                                                                                                                                                                                     formed
## furthering                                                                                                                                                                                                                             furthering
## highlighted                                                                                                                                                                                                                           highlighted
## investing                                                                                                                                                                                                                               investing
## money                                                                                                                                                                                                                                       money
## ndp                                                                                                                                                                                                                                           ndp
## prepare                                                                                                                                                                                                                                   prepare
## prevention                                                                                                                                                                                                                             prevention
## resilient                                                                                                                                                                                                                               resilient
## set                                                                                                                                                                                                                                           set
## setting                                                                                                                                                                                                                                   setting
## wildfires                                                                                                                                                                                                                               wildfires
## “climate                                                                                                                                                                                                                                 “climate
## affecting                                                                                                                                                                                                                               affecting
## affirms                                                                                                                                                                                                                                   affirms
## assessment                                                                                                                                                                                                                             assessment
## call                                                                                                                                                                                                                                         call
## consumption                                                                                                                                                                                                                           consumption
## currently                                                                                                                                                                                                                               currently
## drives                                                                                                                                                                                                                                     drives
## exceed                                                                                                                                                                                                                                     exceed
## experts                                                                                                                                                                                                                                   experts
## fall                                                                                                                                                                                                                                         fall
## life                                                                                                                                                                                                                                         life
## likely                                                                                                                                                                                                                                     likely
## newest                                                                                                                                                                                                                                     newest
## reductions”                                                                                                                                                                                                                           reductions”
## responsible                                                                                                                                                                                                                           responsible
## special                                                                                                                                                                                                                                   special
## sustainability                                                                                                                                                                                                                     sustainability
## understanding                                                                                                                                                                                                                       understanding
## unless                                                                                                                                                                                                                                     unless
## update                                                                                                                                                                                                                                     update
## written                                                                                                                                                                                                                                   written
## “deep                                                                                                                                                                                                                                       “deep
## agreed                                                                                                                                                                                                                                     agreed
## binding                                                                                                                                                                                                                                   binding
## detailed                                                                                                                                                                                                                                 detailed
## legally                                                                                                                                                                                                                                   legally
## motivated                                                                                                                                                                                                                               motivated
## preferably                                                                                                                                                                                                                             preferably
## ratified                                                                                                                                                                                                                                 ratified
## sovereign                                                                                                                                                                                                                               sovereign
## submit                                                                                                                                                                                                                                     submit
## treaty                                                                                                                                                                                                                                     treaty
## available                                                                                                                                                                                                                               available
## aware                                                                                                                                                                                                                                       aware
## best                                                                                                                                                                                                                                         best
## diversifying                                                                                                                                                                                                                         diversifying
## economies                                                                                                                                                                                                                               economies
## efforts                                                                                                                                                                                                                                   efforts
## enacting                                                                                                                                                                                                                                 enacting
## evaluating                                                                                                                                                                                                                             evaluating
## financing                                                                                                                                                                                                                               financing
## guided                                                                                                                                                                                                                                     guided
## knowledge“                                                                                                                                                                                                                             knowledge“
## mobilizing                                                                                                                                                                                                                             mobilizing
## planning                                                                                                                                                                                                                                 planning
## programs                                                                                                                                                                                                                                 programs
## responses                                                                                                                                                                                                                               responses
## transparent                                                                                                                                                                                                                           transparent
## unfcc                                                                                                                                                                                                                                       unfcc
## vision“                                                                                                                                                                                                                                   vision“
## “                                                                                                                                                                                                                                               “
## “longterm                                                                                                                                                                                                                               “longterm
## cutting                                                                                                                                                                                                                                   cutting
## enhanced                                                                                                                                                                                                                                 enhanced
## families                                                                                                                                                                                                                                 families
## habitats                                                                                                                                                                                                                                 habitats
## household                                                                                                                                                                                                                               household
## innovating                                                                                                                                                                                                                             innovating
## original                                                                                                                                                                                                                                 original
## outlining                                                                                                                                                                                                                               outlining
## rebates                                                                                                                                                                                                                                   rebates
## respecting                                                                                                                                                                                                                             respecting
## submitted                                                                                                                                                                                                                               submitted
## bioeconomy                                                                                                                                                                                                                             bioeconomy
## climatechange                                                                                                                                                                                                                       climatechange
## collecting                                                                                                                                                                                                                             collecting
## cultivated                                                                                                                                                                                                                             cultivated
## data                                                                                                                                                                                                                                         data
## extend                                                                                                                                                                                                                                     extend
## fisheries                                                                                                                                                                                                                               fisheries
## globally                                                                                                                                                                                                                                 globally
## map                                                                                                                                                                                                                                           map
## preparedness                                                                                                                                                                                                                         preparedness
## purposes                                                                                                                                                                                                                                 purposes
## ready                                                                                                                                                                                                                                       ready
## released                                                                                                                                                                                                                                 released
## road                                                                                                                                                                                                                                         road
## targeted                                                                                                                                                                                                                                 targeted
## accelerator                                                                                                                                                                                                                           accelerator
## allow                                                                                                                                                                                                                                       allow
## capped                                                                                                                                                                                                                                     capped
## cumulatively                                                                                                                                                                                                                         cumulatively
## offered                                                                                                                                                                                                                                   offered
## proposals                                                                                                                                                                                                                               proposals
## reviewed                                                                                                                                                                                                                                 reviewed
## america                                                                                                                                                                                                                                   america
## applied                                                                                                                                                                                                                                   applied
## canadians                                                                                                                                                                                                                               canadians
## credit                                                                                                                                                                                                                                     credit
## fueltype                                                                                                                                                                                                                                 fueltype
## kind                                                                                                                                                                                                                                         kind
## metric                                                                                                                                                                                                                                     metric
## middleincome                                                                                                                                                                                                                         middleincome
## purchase                                                                                                                                                                                                                                 purchase
## rebated                                                                                                                                                                                                                                   rebated
## solution                                                                                                                                                                                                                                 solution
## starting                                                                                                                                                                                                                                 starting
## taxes                                                                                                                                                                                                                                       taxes
## ton                                                                                                                                                                                                                                           ton
## charging                                                                                                                                                                                                                                 charging
## deferring                                                                                                                                                                                                                               deferring
## electrifying                                                                                                                                                                                                                         electrifying
## expanding                                                                                                                                                                                                                               expanding
## installations                                                                                                                                                                                                                       installations
## passenger                                                                                                                                                                                                                               passenger
## previously                                                                                                                                                                                                                             previously
## promises                                                                                                                                                                                                                                 promises
## promoting                                                                                                                                                                                                                               promoting
## pump                                                                                                                                                                                                                                         pump
## subsidizing                                                                                                                                                                                                                           subsidizing
## vehicles                                                                                                                                                                                                                                 vehicles
## world                                                                                                                                                                                                                                       world
## zeroemission                                                                                                                                                                                                                         zeroemission
## competitively                                                                                                                                                                                                                       competitively
## final                                                                                                                                                                                                                                       final
## leader                                                                                                                                                                                                                                     leader
## move                                                                                                                                                                                                                                         move
## sections                                                                                                                                                                                                                                 sections
## rest                                                                                                                                                                                                                                         rest
## “inform                                                                                                                                                                                                                                   “inform
## ”                                                                                                                                                                                                                                               ”
## analyzing                                                                                                                                                                                                                               analyzing
## impacted                                                                                                                                                                                                                                 impacted
## inform                                                                                                                                                                                                                                     inform
## understand                                                                                                                                                                                                                             understand
## barometric                                                                                                                                                                                                                             barometric
## common                                                                                                                                                                                                                                     common
## difference                                                                                                                                                                                                                             difference
## distinguishing                                                                                                                                                                                                                     distinguishing
## hourly                                                                                                                                                                                                                                     hourly
## influences                                                                                                                                                                                                                             influences
## recognize                                                                                                                                                                                                                               recognize
## seasonally                                                                                                                                                                                                                             seasonally
## speed                                                                                                                                                                                                                                       speed
## start                                                                                                                                                                                                                                       start
## statistical                                                                                                                                                                                                                           statistical
## variabilities                                                                                                                                                                                                                       variabilities
## vary                                                                                                                                                                                                                                         vary
## alternating                                                                                                                                                                                                                           alternating
## canada‘s                                                                                                                                                                                                                                 canada‘s
## climatic                                                                                                                                                                                                                                 climatic
## frostfree                                                                                                                                                                                                                               frostfree
## lots                                                                                                                                                                                                                                         lots
## lowpressure                                                                                                                                                                                                                           lowpressure
## moderating                                                                                                                                                                                                                             moderating
## multiyear                                                                                                                                                                                                                               multiyear
## periods                                                                                                                                                                                                                                   periods
## prevailing                                                                                                                                                                                                                             prevailing
## rainfall                                                                                                                                                                                                                                 rainfall
## seasonal                                                                                                                                                                                                                                 seasonal
## warmest                                                                                                                                                                                                                                   warmest
## west                                                                                                                                                                                                                                         west
## winds                                                                                                                                                                                                                                       winds
## basins                                                                                                                                                                                                                                     basins
## block                                                                                                                                                                                                                                       block
## columbia                                                                                                                                                                                                                                 columbia
## coming                                                                                                                                                                                                                                     coming
## distance                                                                                                                                                                                                                                 distance
## distribute                                                                                                                                                                                                                             distribute
## eastern                                                                                                                                                                                                                                   eastern
## elevation                                                                                                                                                                                                                               elevation
## exposure                                                                                                                                                                                                                                 exposure
## gradient                                                                                                                                                                                                                                 gradient
## great                                                                                                                                                                                                                                       great
## islands                                                                                                                                                                                                                                   islands
## marine                                                                                                                                                                                                                                     marine
## masses                                                                                                                                                                                                                                     masses
## mild                                                                                                                                                                                                                                         mild
## northsouth                                                                                                                                                                                                                             northsouth
## parallel                                                                                                                                                                                                                                 parallel
## prairies                                                                                                                                                                                                                                 prairies
## separated                                                                                                                                                                                                                               separated
## afternoons                                                                                                                                                                                                                             afternoons
## brings                                                                                                                                                                                                                                     brings
## driest                                                                                                                                                                                                                                     driest
## dryer                                                                                                                                                                                                                                       dryer
## elevations                                                                                                                                                                                                                             elevations
## experiences                                                                                                                                                                                                                           experiences
## generating                                                                                                                                                                                                                             generating
## higher                                                                                                                                                                                                                                     higher
## rainshadow                                                                                                                                                                                                                             rainshadow
## range                                                                                                                                                                                                                                       range
## side                                                                                                                                                                                                                                         side
## slopes                                                                                                                                                                                                                                     slopes
## southcentral                                                                                                                                                                                                                         southcentral
## spring                                                                                                                                                                                                                                     spring
## thunderstorm                                                                                                                                                                                                                         thunderstorm
## valleybottoms                                                                                                                                                                                                                       valleybottoms
## valleys                                                                                                                                                                                                                                   valleys
## westerly                                                                                                                                                                                                                                 westerly
## wet                                                                                                                                                                                                                                           wet
## days                                                                                                                                                                                                                                         days
## declared                                                                                                                                                                                                                                 declared
## dramatic                                                                                                                                                                                                                                 dramatic
## history                                                                                                                                                                                                                                   history
## lives                                                                                                                                                                                                                                       lives
## longest                                                                                                                                                                                                                                   longest
## recordbreaking                                                                                                                                                                                                                     recordbreaking
## waves                                                                                                                                                                                                                                       waves
## wild                                                                                                                                                                                                                                         wild
## worst                                                                                                                                                                                                                                       worst
## floods                                                                                                                                                                                                                                     floods
## george                                                                                                                                                                                                                                     george
## harbour                                                                                                                                                                                                                                   harbour
## hot                                                                                                                                                                                                                                           hot
## june                                                                                                                                                                                                                                         june
## lytton                                                                                                                                                                                                                                     lytton
## prince                                                                                                                                                                                                                                     prince
## third                                                                                                                                                                                                                                       third
## victoria                                                                                                                                                                                                                                 victoria
## anything                                                                                                                                                                                                                                 anything
## etal                                                                                                                                                                                                                                         etal
## glaciers                                                                                                                                                                                                                                 glaciers
## mention                                                                                                                                                                                                                                   mention
## moisture                                                                                                                                                                                                                                 moisture
## page                                                                                                                                                                                                                                         page
## spittlehouse                                                                                                                                                                                                                         spittlehouse
## normals                                                                                                                                                                                                                                   normals
## compared                                                                                                                                                                                                                                 compared
## norm                                                                                                                                                                                                                                         norm
## year                                                                                                                                                                                                                                         year
## max                                                                                                                                                                                                                                           max
## min                                                                                                                                                                                                                                           min
## norms                                                                                                                                                                                                                                       norms
## precip                                                                                                                                                                                                                                     precip
## temp                                                                                                                                                                                                                                         temp
## differ                                                                                                                                                                                                                                     differ
## mean                                                                                                                                                                                                                                         mean
## planetary                                                                                                                                                                                                                               planetary
## leading                                                                                                                                                                                                                                   leading
## jurisdiction                                                                                                                                                                                                                         jurisdiction
## actuaries                                                                                                                                                                                                                               actuaries
## index                                                                                                                                                                                                                                       index
## asterix                                                                                                                                                                                                                                   asterix
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                                                                         httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                                                                                               httpsdatapacificclimateorgportaldownscaledgcmsmap
## strength                                                                                                                                                                                                                                 strength
## forecast                                                                                                                                                                                                                                 forecast
## modeled                                                                                                                                                                                                                                   modeled
## prediction                                                                                                                                                                                                                             prediction
## projection                                                                                                                                                                                                                             projection
## see                                                                                                                                                                                                                                           see
## httpstwittercomthomasforbcstatuss                                                                                                                                                                               httpstwittercomthomasforbcstatuss
## amount                                                                                                                                                                                                                                     amount
## drying                                                                                                                                                                                                                                     drying
## melt                                                                                                                                                                                                                                         melt
## persistence                                                                                                                                                                                                                           persistence
## snowpack                                                                                                                                                                                                                                 snowpack
## get                                                                                                                                                                                                                                           get
## hotter                                                                                                                                                                                                                                     hotter
## summers                                                                                                                                                                                                                                   summers
## trend                                                                                                                                                                                                                                       trend
## months                                                                                                                                                                                                                                     months
## decadal                                                                                                                                                                                                                                   decadal
## american                                                                                                                                                                                                                                 american
## lifetime                                                                                                                                                                                                                                 lifetime
## pattern                                                                                                                                                                                                                                   pattern
## amplified                                                                                                                                                                                                                               amplified
## coincided                                                                                                                                                                                                                               coincided
## cycles                                                                                                                                                                                                                                     cycles
## series                                                                                                                                                                                                                                     series
## imbalance                                                                                                                                                                                                                               imbalance
## increases                                                                                                                                                                                                                               increases
## keeping                                                                                                                                                                                                                                   keeping
## relative                                                                                                                                                                                                                                 relative
## transfer                                                                                                                                                                                                                                 transfer
## •                                                                                                                                                                                                                                               •
## affects                                                                                                                                                                                                                                   affects
## heating                                                                                                                                                                                                                                   heating
## slowly                                                                                                                                                                                                                                     slowly
## cumulative                                                                                                                                                                                                                             cumulative
## deforestation                                                                                                                                                                                                                       deforestation
## esp                                                                                                                                                                                                                                           esp
## march                                                                                                                                                                                                                                       march
## nitrous                                                                                                                                                                                                                                   nitrous
## oxide                                                                                                                                                                                                                                       oxide
## httpsbritishcolumbiacombcweatherbc                                                                                                                                                                             httpsbritishcolumbiacombcweatherbc
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                                                                                 httpspicsuviccaresearchclimatehealthcovidbritishcolumbia
## httpsopentextbccageographychapterclimateenvironmentbc                                                                                                                                       httpsopentextbccageographychapterclimateenvironmentbc
## httpsclimatechangecanadacabritishcolumbia                                                                                                                                                               httpsclimatechangecanadacabritishcolumbia
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                                                           httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia
## guiding                                                                                                                                                                                                                                   guiding
## makers                                                                                                                                                                                                                                     makers
## presented                                                                                                                                                                                                                               presented
## scientists                                                                                                                                                                                                                             scientists
## considers                                                                                                                                                                                                                               considers
## bc’                                                                                                                                                                                                                                           bc’
## depends                                                                                                                                                                                                                                   depends
## grasslands                                                                                                                                                                                                                             grasslands
## healthier                                                                                                                                                                                                                               healthier
## matter                                                                                                                                                                                                                                     matter
## nature                                                                                                                                                                                                                                     nature
## particulate                                                                                                                                                                                                                           particulate
## retention                                                                                                                                                                                                                               retention
## shrubs                                                                                                                                                                                                                                     shrubs
## stored                                                                                                                                                                                                                                     stored
## zone                                                                                                                                                                                                                                         zone
## ‘beautiful                                                                                                                                                                                                                             ‘beautiful
## accessible                                                                                                                                                                                                                             accessible
## distributed                                                                                                                                                                                                                           distributed
## excluded                                                                                                                                                                                                                                 excluded
## inclusive                                                                                                                                                                                                                               inclusive
## inequality                                                                                                                                                                                                                             inequality
## multiple                                                                                                                                                                                                                                 multiple
## reductions                                                                                                                                                                                                                             reductions
## spreading                                                                                                                                                                                                                               spreading
## thus                                                                                                                                                                                                                                         thus
## consultation                                                                                                                                                                                                                         consultation
## diesel                                                                                                                                                                                                                                     diesel
## generators                                                                                                                                                                                                                             generators
## relations                                                                                                                                                                                                                               relations
## reliance                                                                                                                                                                                                                                 reliance
## develop                                                                                                                                                                                                                                   develop
## environments                                                                                                                                                                                                                         environments
## explore                                                                                                                                                                                                                                   explore
## inspired                                                                                                                                                                                                                                 inspired
## lowemission                                                                                                                                                                                                                           lowemission
## researchers                                                                                                                                                                                                                           researchers
## revitalized                                                                                                                                                                                                                           revitalized
## skilled                                                                                                                                                                                                                                   skilled
## smooth                                                                                                                                                                                                                                     smooth
## student                                                                                                                                                                                                                                   student
## chance                                                                                                                                                                                                                                     chance
## cycling                                                                                                                                                                                                                                   cycling
## diversification                                                                                                                                                                                                                   diversification
## managed                                                                                                                                                                                                                                   managed
## newly                                                                                                                                                                                                                                       newly
## nutrient                                                                                                                                                                                                                                 nutrient
## preservation                                                                                                                                                                                                                         preservation
## purification                                                                                                                                                                                                                         purification
## recreation                                                                                                                                                                                                                             recreation
## rethink                                                                                                                                                                                                                                   rethink
## spirituality                                                                                                                                                                                                                         spirituality
## stewardship                                                                                                                                                                                                                           stewardship
## tissue                                                                                                                                                                                                                                     tissue
## wildlife                                                                                                                                                                                                                                 wildlife
## woody                                                                                                                                                                                                                                       woody
## abound                                                                                                                                                                                                                                     abound
## contribution                                                                                                                                                                                                                         contribution
## ensures                                                                                                                                                                                                                                   ensures
## farming                                                                                                                                                                                                                                   farming
## importing                                                                                                                                                                                                                               importing
## preserving                                                                                                                                                                                                                             preserving
## ranching                                                                                                                                                                                                                                 ranching
## rebuilt                                                                                                                                                                                                                                   rebuilt
## recently                                                                                                                                                                                                                                 recently
## reduces                                                                                                                                                                                                                                   reduces
## reserve                                                                                                                                                                                                                                   reserve
## destructive                                                                                                                                                                                                                           destructive
## environmentally                                                                                                                                                                                                                   environmentally
## preparing                                                                                                                                                                                                                               preparing
## reconstruct                                                                                                                                                                                                                           reconstruct
## thrive                                                                                                                                                                                                                                     thrive
## zoning                                                                                                                                                                                                                                     zoning
## cite                                                                                                                                                                                                                                         cite
## cleaning                                                                                                                                                                                                                                 cleaning
## covid                                                                                                                                                                                                                                       covid
## greatly                                                                                                                                                                                                                                   greatly
## lockdown                                                                                                                                                                                                                                 lockdown
## looking                                                                                                                                                                                                                                   looking
## markets                                                                                                                                                                                                                                   markets
## pays                                                                                                                                                                                                                                         pays
## polluter                                                                                                                                                                                                                                 polluter
## principle                                                                                                                                                                                                                               principle
## providing                                                                                                                                                                                                                               providing
## reassessing                                                                                                                                                                                                                           reassessing
## reevaluate                                                                                                                                                                                                                             reevaluate
## something                                                                                                                                                                                                                               something
## try                                                                                                                                                                                                                                           try
## interests                                                                                                                                                                                                                               interests
## involves                                                                                                                                                                                                                                 involves
## myriad                                                                                                                                                                                                                                     myriad
## detractors                                                                                                                                                                                                                             detractors
## measure                                                                                                                                                                                                                                   measure
## supporters                                                                                                                                                                                                                             supporters
## highlight                                                                                                                                                                                                                               highlight
## might                                                                                                                                                                                                                                       might
## mitigated                                                                                                                                                                                                                               mitigated
## overcome                                                                                                                                                                                                                                 overcome
## ided                                                                                                                                                                                                                                         ided
## discuss                                                                                                                                                                                                                                   discuss
## displaced                                                                                                                                                                                                                               displaced
## communicate                                                                                                                                                                                                                           communicate
## inspire                                                                                                                                                                                                                                   inspire
## accepting                                                                                                                                                                                                                               accepting
## comes                                                                                                                                                                                                                                       comes
## continuing                                                                                                                                                                                                                             continuing
## directions                                                                                                                                                                                                                             directions
## emit                                                                                                                                                                                                                                         emit
## expensive                                                                                                                                                                                                                               expensive
## inherent                                                                                                                                                                                                                                 inherent
## paths                                                                                                                                                                                                                                       paths
## problem                                                                                                                                                                                                                                   problem
## relying                                                                                                                                                                                                                                   relying
## researching                                                                                                                                                                                                                           researching
## simply                                                                                                                                                                                                                                     simply
## source                                                                                                                                                                                                                                     source
## suggest                                                                                                                                                                                                                                   suggest
## timelines                                                                                                                                                                                                                               timelines
## unproven                                                                                                                                                                                                                                 unproven
## concerns                                                                                                                                                                                                                                 concerns
## give                                                                                                                                                                                                                                         give
## legitimate                                                                                                                                                                                                                             legitimate
## oceans”                                                                                                                                                                                                                                   oceans”
## places                                                                                                                                                                                                                                     places
## protect                                                                                                                                                                                                                                   protect
## raised                                                                                                                                                                                                                                     raised
## shellfish                                                                                                                                                                                                                               shellfish
## shells                                                                                                                                                                                                                                     shells
## shortterm                                                                                                                                                                                                                               shortterm
## “irreversible                                                                                                                                                                                                                       “irreversible
## advisory                                                                                                                                                                                                                                 advisory
## advocating                                                                                                                                                                                                                             advocating
## businesses                                                                                                                                                                                                                             businesses
## consumers                                                                                                                                                                                                                               consumers
## disabled                                                                                                                                                                                                                                 disabled
## individual                                                                                                                                                                                                                             individual
## member                                                                                                                                                                                                                                     member
## missing                                                                                                                                                                                                                                   missing
## organizations                                                                                                                                                                                                                       organizations
## poverty                                                                                                                                                                                                                                   poverty
## seeking                                                                                                                                                                                                                                   seeking
## accepted                                                                                                                                                                                                                                 accepted
## declaration                                                                                                                                                                                                                           declaration
## departments                                                                                                                                                                                                                           departments
## drip                                                                                                                                                                                                                                         drip
## engagement                                                                                                                                                                                                                             engagement
## forms                                                                                                                                                                                                                                       forms
## governance                                                                                                                                                                                                                             governance
## hereditary                                                                                                                                                                                                                             hereditary
## indian                                                                                                                                                                                                                                     indian
## lands                                                                                                                                                                                                                                       lands
## peoples                                                                                                                                                                                                                                   peoples
## personnel                                                                                                                                                                                                                               personnel
## protocols                                                                                                                                                                                                                               protocols
## reservation                                                                                                                                                                                                                           reservation
## situated                                                                                                                                                                                                                                 situated
## territorial                                                                                                                                                                                                                           territorial
## treaties                                                                                                                                                                                                                                 treaties
## decline                                                                                                                                                                                                                                   decline
## except                                                                                                                                                                                                                                     except
## expansion                                                                                                                                                                                                                               expansion
## general                                                                                                                                                                                                                                   general
## greenenergy                                                                                                                                                                                                                           greenenergy
## retirements                                                                                                                                                                                                                           retirements
## socioeconomic                                                                                                                                                                                                                       socioeconomic
## absorption                                                                                                                                                                                                                             absorption
## ecoservices                                                                                                                                                                                                                           ecoservices
## insect                                                                                                                                                                                                                                     insect
## pause                                                                                                                                                                                                                                       pause
## stressed                                                                                                                                                                                                                                 stressed
## system                                                                                                                                                                                                                                     system
## techniques                                                                                                                                                                                                                             techniques
## uncertainty                                                                                                                                                                                                                           uncertainty
## unsustainable                                                                                                                                                                                                                       unsustainable
## addressed                                                                                                                                                                                                                               addressed
## alternate                                                                                                                                                                                                                               alternate
## became                                                                                                                                                                                                                                     became
## grown                                                                                                                                                                                                                                       grown
## locally                                                                                                                                                                                                                                   locally
## prone                                                                                                                                                                                                                                       prone
## remain                                                                                                                                                                                                                                     remain
## toxins                                                                                                                                                                                                                                     toxins
## adaption                                                                                                                                                                                                                                 adaption
## anew                                                                                                                                                                                                                                         anew
## considered                                                                                                                                                                                                                             considered
## expense                                                                                                                                                                                                                                   expense
## farm                                                                                                                                                                                                                                         farm
## income                                                                                                                                                                                                                                     income
## infrastructure”                                                                                                                                                                                                                   infrastructure”
## lost                                                                                                                                                                                                                                         lost
## policies”                                                                                                                                                                                                                               policies”
## require                                                                                                                                                                                                                                   require
## results                                                                                                                                                                                                                                   results
## “ambitious                                                                                                                                                                                                                             “ambitious
## “systemic                                                                                                                                                                                                                               “systemic
## comparisons                                                                                                                                                                                                                           comparisons
## previous                                                                                                                                                                                                                                 previous
## conclusions                                                                                                                                                                                                                           conclusions
## summaryconclude                                                                                                                                                                                                                   summaryconclude
## parts                                                                                                                                                                                                                                       parts
## open                                                                                                                                                                                                                                         open
## paragraph                                                                                                                                                                                                                               paragraph
## parti                                                                                                                                                                                                                                       parti
## along                                                                                                                                                                                                                                       along
## demographic                                                                                                                                                                                                                           demographic
## varying                                                                                                                                                                                                                                   varying
## actor                                                                                                                                                                                                                                       actor
## pick                                                                                                                                                                                                                                         pick
## fulfillment                                                                                                                                                                                                                           fulfillment
## identification                                                                                                                                                                                                                     identification
## issue                                                                                                                                                                                                                                       issue
## suggested                                                                                                                                                                                                                               suggested
## actionoriented                                                                                                                                                                                                                     actionoriented
## inclusion                                                                                                                                                                                                                               inclusion
## practical                                                                                                                                                                                                                               practical
## rationales                                                                                                                                                                                                                             rationales
## term                                                                                                                                                                                                                                         term
## think                                                                                                                                                                                                                                       think
## underway                                                                                                                                                                                                                                 underway
## factor                                                                                                                                                                                                                                     factor
## consideration                                                                                                                                                                                                                       consideration
## number                                                                                                                                                                                                                                     number
## order                                                                                                                                                                                                                                       order
## posed                                                                                                                                                                                                                                       posed
## strategic                                                                                                                                                                                                                               strategic
## avoid                                                                                                                                                                                                                                       avoid
## linealigned                                                                                                                                                                                                                           linealigned
## sake                                                                                                                                                                                                                                         sake
## sure                                                                                                                                                                                                                                         sure
## thought                                                                                                                                                                                                                                   thought
## wise                                                                                                                                                                                                                                         wise
## appropriate                                                                                                                                                                                                                           appropriate
## estate                                                                                                                                                                                                                                     estate
## extraction                                                                                                                                                                                                                             extraction
## real                                                                                                                                                                                                                                         real
## restore                                                                                                                                                                                                                                   restore
## valuable                                                                                                                                                                                                                                 valuable
## assure                                                                                                                                                                                                                                     assure
## fair                                                                                                                                                                                                                                         fair
## finance                                                                                                                                                                                                                                   finance
## industrial                                                                                                                                                                                                                             industrial
## just                                                                                                                                                                                                                                         just
## supportive                                                                                                                                                                                                                             supportive
## green                                                                                                                                                                                                                                       green
## process                                                                                                                                                                                                                                   process
## relationships                                                                                                                                                                                                                       relationships
## together                                                                                                                                                                                                                                 together
## carbonfree                                                                                                                                                                                                                             carbonfree
## design                                                                                                                                                                                                                                     design
## engineer                                                                                                                                                                                                                                 engineer
## innovate                                                                                                                                                                                                                                 innovate
## maintain                                                                                                                                                                                                                                 maintain
## produce                                                                                                                                                                                                                                   produce
## train                                                                                                                                                                                                                                       train
## transitioning                                                                                                                                                                                                                       transitioning
## young                                                                                                                                                                                                                                       young
## capture                                                                                                                                                                                                                                   capture
## deciduous                                                                                                                                                                                                                               deciduous
## diverse                                                                                                                                                                                                                                   diverse
## effectively                                                                                                                                                                                                                           effectively
## firebreak                                                                                                                                                                                                                               firebreak
## functions                                                                                                                                                                                                                               functions
## mills                                                                                                                                                                                                                                       mills
## refit                                                                                                                                                                                                                                       refit
## smaller                                                                                                                                                                                                                                   smaller
## tree                                                                                                                                                                                                                                         tree
## compliance                                                                                                                                                                                                                             compliance
## continuation                                                                                                                                                                                                                         continuation
## enforcement                                                                                                                                                                                                                           enforcement
## equipment                                                                                                                                                                                                                               equipment
## gaspowered                                                                                                                                                                                                                             gaspowered
## innovations                                                                                                                                                                                                                           innovations
## replace                                                                                                                                                                                                                                   replace
## demolishing                                                                                                                                                                                                                           demolishing
## don’t                                                                                                                                                                                                                                       don’t
## fireresiliency                                                                                                                                                                                                                     fireresiliency
## focus                                                                                                                                                                                                                                       focus
## restoring                                                                                                                                                                                                                               restoring
## risk                                                                                                                                                                                                                                         risk
## safe                                                                                                                                                                                                                                         safe
## structures                                                                                                                                                                                                                             structures
## updating                                                                                                                                                                                                                                 updating
## exhaustive                                                                                                                                                                                                                             exhaustive
## ‘lens’                                                                                                                                                                                                                                     ‘lens’
## sense                                                                                                                                                                                                                                       sense
## urgency                                                                                                                                                                                                                                   urgency
## ultimate                                                                                                                                                                                                                                 ultimate
## initiating                                                                                                                                                                                                                             initiating
## lead                                                                                                                                                                                                                                         lead
## market                                                                                                                                                                                                                                     market
## initial                                                                                                                                                                                                                                   initial
## outline                                                                                                                                                                                                                                   outline
## refer                                                                                                                                                                                                                                       refer
## difference’                                                                                                                                                                                                                           difference’
## know                                                                                                                                                                                                                                         know
## recognizing                                                                                                                                                                                                                           recognizing
## ‘make                                                                                                                                                                                                                                       ‘make
## honour                                                                                                                                                                                                                                     honour
## reason                                                                                                                                                                                                                                     reason
## reports                                                                                                                                                                                                                                   reports
## taking                                                                                                                                                                                                                                     taking
## british                                                                                                                                                                                                                                   british
## business                                                                                                                                                                                                                                 business
## columbians                                                                                                                                                                                                                             columbians
## ensured                                                                                                                                                                                                                                   ensured
## stewarding                                                                                                                                                                                                                             stewarding
## unique                                                                                                                                                                                                                                     unique
## vibrant                                                                                                                                                                                                                                   vibrant
##                                                                                                                          freq
## climate                                                                                                                    67
## emissions                                                                                                                  41
## bc’s                                                                                                                       25
## will                                                                                                                       23
## change                                                                                                                     22
## reduce                                                                                                                     21
## carbon                                                                                                                     17
## help                                                                                                                       17
## regions                                                                                                                    16
## ghg                                                                                                                        16
## action                                                                                                                     15
## future                                                                                                                     15
## indigenous                                                                                                                 15
## challenges                                                                                                                 15
## weather                                                                                                                    15
## temperature                                                                                                                14
## also                                                                                                                       14
## industry                                                                                                                   14
## opportunity                                                                                                                14
## changing                                                                                                                   13
## social                                                                                                                     13
## economic                                                                                                                   13
## building                                                                                                                   13
## opportunities                                                                                                              13
## recommendations                                                                                                            12
## new                                                                                                                        12
## mitigation                                                                                                                 12
## gas                                                                                                                        11
## including                                                                                                                  11
## paris                                                                                                                      11
## provincial                                                                                                                 11
## canada’s                                                                                                                   11
## land                                                                                                                       11
## development                                                                                                                11
## energy                                                                                                                     11
## reducing                                                                                                                   11
## words                                                                                                                      11
## –                                                                                                                          11
## can                                                                                                                        10
## strategies                                                                                                                 10
## global                                                                                                                     10
## increased                                                                                                                  10
## agriculture                                                                                                                10
## natural                                                                                                                    10
## need                                                                                                                       10
## skills                                                                                                                     10
## recommendation                                                                                                             10
## food                                                                                                                       10
## supporting                                                                                                                 10
## changes                                                                                                                    10
## challenge                                                                                                                  10
## forests                                                                                                                     9
## communities                                                                                                                 9
## adaptation                                                                                                                  9
## clean                                                                                                                       9
## technology                                                                                                                  9
## benefits                                                                                                                    9
## provide                                                                                                                     9
## events                                                                                                                      9
## different                                                                                                                   8
## people                                                                                                                      8
## political                                                                                                                   8
## ipcc                                                                                                                        8
## growth                                                                                                                      8
## region                                                                                                                      8
## interior                                                                                                                    8
## buildings                                                                                                                   8
## oil                                                                                                                         8
## transportation                                                                                                              8
## protecting                                                                                                                  8
## training                                                                                                                    8
## agreement                                                                                                                   8
## integrity                                                                                                                   8
## well                                                                                                                        8
## section                                                                                                                     8
## extreme                                                                                                                     8
## air                                                                                                                         8
## environmental                                                                                                               8
## needs                                                                                                                       8
## support                                                                                                                     7
## ocean                                                                                                                       7
## biodiversity                                                                                                                7
## include                                                                                                                     7
## increasing                                                                                                                  7
## first                                                                                                                       7
## urgent                                                                                                                      7
## commitments                                                                                                                 7
## capacity                                                                                                                    7
## security                                                                                                                    7
## ecological                                                                                                                  7
## lowcarbon                                                                                                                   7
## atmospheric                                                                                                                 7
## services                                                                                                                    7
## analysis                                                                                                                    6
## report                                                                                                                      6
## cleanbc                                                                                                                     6
## ndc                                                                                                                         6
## mountains                                                                                                                   6
## regional                                                                                                                    6
## groups                                                                                                                      6
## north                                                                                                                       6
## potential                                                                                                                   6
## coastal                                                                                                                     6
## adapt                                                                                                                       6
## commitment                                                                                                                  6
## past                                                                                                                        6
## since                                                                                                                       6
## climates                                                                                                                    6
## find                                                                                                                        6
## levels                                                                                                                      6
## °c                                                                                                                          6
## temperatures                                                                                                                6
## years                                                                                                                       6
## ensuring                                                                                                                    6
## equity                                                                                                                      6
## precipitation                                                                                                               6
## summary                                                                                                                     6
## systems                                                                                                                     6
## century                                                                                                                     6
## incorporate                                                                                                                 6
## solutions                                                                                                                   6
## water                                                                                                                       6
## ensure                                                                                                                      6
## important                                                                                                                   5
## accord                                                                                                                      5
## address                                                                                                                     5
## canada                                                                                                                      5
## impacts                                                                                                                     5
## international                                                                                                               5
## warming                                                                                                                     5
## pacific                                                                                                                     5
## province                                                                                                                    5
## south                                                                                                                       5
## health                                                                                                                      5
## population                                                                                                                  5
## result                                                                                                                      5
## though                                                                                                                      5
## within                                                                                                                      5
## forestry                                                                                                                    5
## key                                                                                                                         5
## sectors                                                                                                                     5
## actions                                                                                                                     5
## continue                                                                                                                    5
## local                                                                                                                       5
## based                                                                                                                       5
## flooding                                                                                                                    5
## canadian                                                                                                                    5
## goals                                                                                                                       5
## time                                                                                                                        5
## jobs                                                                                                                        5
## economy                                                                                                                     5
## forest                                                                                                                      5
## fulfill                                                                                                                     5
## reduction                                                                                                                   5
## innovative                                                                                                                  5
## mitigate                                                                                                                    5
## policy                                                                                                                      5
## trees                                                                                                                       5
## become                                                                                                                      5
## work                                                                                                                        5
## make                                                                                                                        5
## communication                                                                                                               5
## copied                                                                                                                      5
## edited                                                                                                                      5
## managing                                                                                                                    5
## still                                                                                                                       5
## part                                                                                                                        4
## contribute                                                                                                                  4
## live                                                                                                                        4
## respond                                                                                                                     4
## accelerated                                                                                                                 4
## plan                                                                                                                        4
## area                                                                                                                        4
## mountain                                                                                                                    4
## northern                                                                                                                    4
## total                                                                                                                       4
## creating                                                                                                                    4
## districts                                                                                                                   4
## high                                                                                                                        4
## use                                                                                                                         4
## increase                                                                                                                    4
## less                                                                                                                        4
## may                                                                                                                         4
## projected                                                                                                                   4
## workers                                                                                                                     4
## central                                                                                                                     4
## experienced                                                                                                                 4
## coast                                                                                                                       4
## gdp                                                                                                                         4
## government                                                                                                                  4
## recent                                                                                                                      4
## financial                                                                                                                   4
## recovery                                                                                                                    4
## wildfire                                                                                                                    4
## balance                                                                                                                     4
## healthy                                                                                                                     4
## rise                                                                                                                        4
## effects                                                                                                                     4
## knowledge                                                                                                                   4
## resilience                                                                                                                  4
## traditional                                                                                                                 4
## competitive                                                                                                                 4
## emission                                                                                                                    4
## encourage                                                                                                                   4
## fuel                                                                                                                        4
## tax                                                                                                                         4
## costs                                                                                                                       4
## sector                                                                                                                      4
## workforce                                                                                                                   4
## becoming                                                                                                                    4
## patterns                                                                                                                    4
## period                                                                                                                      4
## summer                                                                                                                      4
## winter                                                                                                                      4
## cold                                                                                                                        4
## warm                                                                                                                        4
## wetter                                                                                                                      4
## fires                                                                                                                       4
## observed                                                                                                                    4
## look                                                                                                                        4
## lecture                                                                                                                     4
##                                                                                                                            4
## methane                                                                                                                     4
## offer                                                                                                                       4
## build                                                                                                                       4
## rebuilding                                                                                                                  4
## way                                                                                                                         4
## intro                                                                                                                       4
## background                                                                                                                  3
## developing                                                                                                                  3
## geographic                                                                                                                  3
## includes                                                                                                                    3
## industries                                                                                                                  3
## information                                                                                                                 3
## used                                                                                                                        3
## created                                                                                                                     3
## dioxide                                                                                                                     3
## earth’s                                                                                                                     3
## issues                                                                                                                      3
## obligations                                                                                                                 3
## roadmap                                                                                                                     3
## crown                                                                                                                       3
## east                                                                                                                        3
## hectares                                                                                                                    3
## million                                                                                                                     3
## ranges                                                                                                                      3
## western                                                                                                                     3
## biogeoclimatic                                                                                                              3
## manage                                                                                                                      3
## vegetation                                                                                                                  3
## demographics                                                                                                                3
## areas                                                                                                                       3
## territories                                                                                                                 3
## dry                                                                                                                         3
## geography                                                                                                                   3
## construction                                                                                                                3
## logging                                                                                                                     3
## prior                                                                                                                       3
## rights                                                                                                                      3
## cpas                                                                                                                        3
## following                                                                                                                   3
## infrastructure                                                                                                              3
## nations                                                                                                                     3
## next                                                                                                                        3
## plans                                                                                                                       3
## policies                                                                                                                    3
## targets                                                                                                                     3
## affordable                                                                                                                  3
## innovation                                                                                                                  3
## keep                                                                                                                        3
## limit                                                                                                                       3
## made                                                                                                                        3
## preindustrial                                                                                                               3
## production                                                                                                                  3
## sustainable                                                                                                                 3
## every                                                                                                                       3
## reduced                                                                                                                     3
## education                                                                                                                   3
## encouraging                                                                                                                 3
## equitable                                                                                                                   3
## experience                                                                                                                  3
## incorporating                                                                                                               3
## learning                                                                                                                    3
## taken                                                                                                                       3
## creation                                                                                                                    3
## goal                                                                                                                        3
## homes                                                                                                                       3
## increasingly                                                                                                                3
## per                                                                                                                         3
## pollution                                                                                                                   3
## beyond                                                                                                                      3
## community                                                                                                                   3
## create                                                                                                                      3
## ecosystem                                                                                                                   3
## helping                                                                                                                     3
## strategy                                                                                                                    3
## technologies                                                                                                                3
## fund                                                                                                                        3
## projects                                                                                                                    3
## research                                                                                                                    3
## incentives                                                                                                                  3
## large                                                                                                                       3
## heat                                                                                                                        3
## continues                                                                                                                   3
## present                                                                                                                     3
## variations                                                                                                                  3
## averages                                                                                                                    3
## duration                                                                                                                    3
## wind                                                                                                                        3
## associated                                                                                                                  3
## atmosphere                                                                                                                  3
## circulation                                                                                                                 3
## flow                                                                                                                        3
## good                                                                                                                        3
## long                                                                                                                        3
## season                                                                                                                      3
## agricultural                                                                                                                3
## drought                                                                                                                     3
## emergency                                                                                                                   3
## november                                                                                                                    3
## resulting                                                                                                                   3
## locations                                                                                                                   3
## record                                                                                                                      3
## recorded                                                                                                                    3
## average                                                                                                                     3
## current                                                                                                                     3
## environment                                                                                                                 3
## trends                                                                                                                      3
## summarize                                                                                                                   3
## check                                                                                                                       3
## oscillation                                                                                                                 3
## effect                                                                                                                      3
## ability                                                                                                                     3
## species                                                                                                                     3
## landuse                                                                                                                     3
## already                                                                                                                     3
## developed                                                                                                                   3
## creative                                                                                                                    3
## affect                                                                                                                      3
## nature’s                                                                                                                    3
## addressing                                                                                                                  3
## growing                                                                                                                     3
## transition                                                                                                                  3
## instead                                                                                                                     3
## ways                                                                                                                        3
## codes                                                                                                                       3
## quality                                                                                                                     3
## plant                                                                                                                       3
## led                                                                                                                         3
## introduction                                                                                                                2
## brief                                                                                                                       2
## description                                                                                                                 2
## economically                                                                                                                2
## offers                                                                                                                      2
## due                                                                                                                         2
## especially                                                                                                                  2
## intergovernmental                                                                                                           2
## panel                                                                                                                       2
## pathways                                                                                                                    2
## required                                                                                                                    2
## border                                                                                                                      2
## rocky                                                                                                                       2
## authorities                                                                                                                 2
## census                                                                                                                      2
## ecosystems                                                                                                                  2
## geopolitical                                                                                                                2
## macroclimate                                                                                                                2
## municipalities                                                                                                              2
## school                                                                                                                      2
## subdivisions                                                                                                                2
## zones                                                                                                                       2
## ages                                                                                                                        2
## depending                                                                                                                   2
## fewer                                                                                                                       2
## migration                                                                                                                   2
## senior                                                                                                                      2
## cities                                                                                                                      2
## mostly                                                                                                                      2
## nation                                                                                                                      2
## rural                                                                                                                       2
## towns                                                                                                                       2
## villages                                                                                                                    2
## cariboo                                                                                                                     2
## mining                                                                                                                      2
## plateau                                                                                                                     2
## private                                                                                                                     2
## remote                                                                                                                      2
## specific                                                                                                                    2
## tourism                                                                                                                     2
## contributes                                                                                                                 2
## consent                                                                                                                     2
## examples                                                                                                                    2
## forward                                                                                                                     2
## free                                                                                                                        2
## informed                                                                                                                    2
## much                                                                                                                        2
## oldgrowth                                                                                                                   2
## subsidies                                                                                                                   2
## territory                                                                                                                   2
## unceded                                                                                                                     2
## accomplishments                                                                                                             2
## agreements                                                                                                                  2
## backdrop                                                                                                                    2
## budget                                                                                                                      2
## election                                                                                                                    2
## federal                                                                                                                     2
## liberal                                                                                                                     2
## majority                                                                                                                    2
## making                                                                                                                      2
## management                                                                                                                  2
## minority                                                                                                                    2
## responsibilities                                                                                                            2
## reviewing                                                                                                                   2
## speech                                                                                                                      2
## throne                                                                                                                      2
## equality                                                                                                                    2
## netzero                                                                                                                     2
## ppm                                                                                                                         2
## states                                                                                                                      2
## contributions                                                                                                               2
## c°                                                                                                                          2
## determined                                                                                                                  2
## nationally                                                                                                                  2
## rising                                                                                                                      2
## ambitious                                                                                                                   2
## balancing                                                                                                                   2
## considering                                                                                                                 2
## effective                                                                                                                   2
## monitoring                                                                                                                  2
## participation                                                                                                               2
## public                                                                                                                      2
## rapidly                                                                                                                     2
## risks                                                                                                                       2
## scientific                                                                                                                  2
## technological                                                                                                               2
## vulnerable                                                                                                                  2
## adapting                                                                                                                    2
## advantage                                                                                                                   2
## job                                                                                                                         2
## pricing                                                                                                                     2
## waste                                                                                                                       2
## economics                                                                                                                   2
## low                                                                                                                         2
## negative                                                                                                                    2
## partnerships                                                                                                                2
## consumer                                                                                                                    2
## fossil                                                                                                                      2
## introduced                                                                                                                  2
## lower                                                                                                                       2
## revenue                                                                                                                     2
## efficient                                                                                                                   2
## electric                                                                                                                    2
## existing                                                                                                                    2
## old                                                                                                                         2
## retrofitting                                                                                                                2
## direct                                                                                                                      2
## obvious                                                                                                                     2
## quest                                                                                                                       2
## take                                                                                                                        2
## towards                                                                                                                     2
## factors                                                                                                                     2
## many                                                                                                                        2
## clouds                                                                                                                      2
## conditions                                                                                                                  2
## daily                                                                                                                       2
## direction                                                                                                                   2
## extremes                                                                                                                    2
## intensity                                                                                                                   2
## like                                                                                                                        2
## normal                                                                                                                      2
## place                                                                                                                       2
## pressure                                                                                                                    2
## cycle                                                                                                                       2
## highpressure                                                                                                                2
## influence                                                                                                                   2
## influenced                                                                                                                  2
## largescale                                                                                                                  2
## maritime                                                                                                                    2
## niño                                                                                                                        2
## small                                                                                                                       2
## continental                                                                                                                 2
## latitude                                                                                                                    2
## moderate                                                                                                                    2
## plains                                                                                                                      2
## plateaus                                                                                                                    2
## southern                                                                                                                    2
## varies                                                                                                                      2
## activity                                                                                                                    2
## arctic                                                                                                                      2
## early                                                                                                                       2
## largest                                                                                                                     2
## snow                                                                                                                        2
## burning                                                                                                                     2
## day                                                                                                                         2
## fertile                                                                                                                     2
## fire                                                                                                                        2
## frequency                                                                                                                   2
## human                                                                                                                       2
## impact                                                                                                                      2
## one                                                                                                                         2
## prairie                                                                                                                     2
## rain                                                                                                                        2
## river                                                                                                                       2
## state                                                                                                                       2
## sumas                                                                                                                       2
## values                                                                                                                      2
## december                                                                                                                    2
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf    2
## variability                                                                                                                 2
## drier                                                                                                                       2
## last                                                                                                                        2
## systemic                                                                                                                    2
## maps                                                                                                                        2
## material                                                                                                                    2
## expectations                                                                                                                2
## module                                                                                                                      2
## notes                                                                                                                       2
## slide                                                                                                                       2
## longterm                                                                                                                    2
## oceans                                                                                                                      2
## stabilize                                                                                                                   2
## acidic                                                                                                                      2
## habitat                                                                                                                     2
## adaptive                                                                                                                    2
## vulnerabilities                                                                                                             2
## pages                                                                                                                       2
## necessary                                                                                                                   2
## themes                                                                                                                      2
## wetlands                                                                                                                    2
## across                                                                                                                      2
## often                                                                                                                       2
## populations                                                                                                                 2
## representative                                                                                                              2
## ministry                                                                                                                    2
## reconciliation                                                                                                              2
## sources                                                                                                                     2
## youth                                                                                                                       2
## cleanenergy                                                                                                                 2
## employment                                                                                                                  2
## force                                                                                                                       2
## remove                                                                                                                      2
## resource                                                                                                                    2
## soil                                                                                                                        2
## storage                                                                                                                     2
## store                                                                                                                       2
## timber                                                                                                                      2
## farms                                                                                                                       2
## flooded                                                                                                                     2
## fraser                                                                                                                      2
## legislation                                                                                                                 2
## manure                                                                                                                      2
## valley                                                                                                                      2
## flood                                                                                                                       2
## preserve                                                                                                                    2
## resources                                                                                                                   2
## bold                                                                                                                        2
## exists                                                                                                                      2
## invest                                                                                                                      2
## competing                                                                                                                   2
## advice                                                                                                                      2
## meet                                                                                                                        2
## track                                                                                                                       2
## causing                                                                                                                     2
## damage                                                                                                                      2
## protests                                                                                                                    2
## affordability                                                                                                               2
## consider                                                                                                                    2
## council                                                                                                                     2
## chiefs                                                                                                                      2
## continued                                                                                                                   2
## ongoing                                                                                                                     2
## without                                                                                                                     2
## rebuild                                                                                                                     2
## using                                                                                                                       2
## list                                                                                                                        2
## foster                                                                                                                      2
## …                                                                                                                           2
## needed                                                                                                                      2
## conclusion                                                                                                                  2
## cabinet                                                                                                                     1
## confidential                                                                                                                1
## considerations                                                                                                              1
## discussion                                                                                                                  1
## tool                                                                                                                        1
## vastly                                                                                                                      1
## activities                                                                                                                  1
## cause                                                                                                                       1
## cooperation                                                                                                                 1
## greenhouse                                                                                                                  1
## humanrelated                                                                                                                1
## lessen                                                                                                                      1
## national                                                                                                                    1
## outlined                                                                                                                    1
## reported                                                                                                                    1
## signed                                                                                                                      1
## surface                                                                                                                     1
## alberta                                                                                                                     1
## boreal                                                                                                                      1
## coastline                                                                                                                   1
## rugged                                                                                                                      1
## stretching                                                                                                                  1
## usa                                                                                                                         1
## categories                                                                                                                  1
## distinct                                                                                                                    1
## divided                                                                                                                     1
## divisions                                                                                                                   1
## numerous                                                                                                                    1
## phsyiographic                                                                                                               1
## plus                                                                                                                        1
## similar                                                                                                                     1
## subareas                                                                                                                    1
## useful                                                                                                                      1
## variety                                                                                                                     1
## aging                                                                                                                       1
## births                                                                                                                      1
## deaths                                                                                                                      1
## decrease                                                                                                                    1
## interprovincial                                                                                                             1
## now                                                                                                                         1
## passed                                                                                                                      1
## populace                                                                                                                    1
## retire                                                                                                                      1
## shows                                                                                                                       1
## slightly                                                                                                                    1
## stats                                                                                                                       1
## working                                                                                                                     1
## age                                                                                                                         1
## comprise                                                                                                                    1
## least                                                                                                                       1
## okanagan                                                                                                                    1
## reserves                                                                                                                    1
## urban                                                                                                                       1
## younger                                                                                                                     1
## cover                                                                                                                       1
## culture                                                                                                                     1
## drivers                                                                                                                     1
## iii                                                                                                                         1
## island                                                                                                                      1
## kootenay                                                                                                                    1
## mainland                                                                                                                    1
## nechako                                                                                                                     1
## northeast                                                                                                                   1
## occur                                                                                                                       1
## occurs                                                                                                                      1
## pipelines                                                                                                                   1
## southwest                                                                                                                   1
## thompsonokanagan                                                                                                            1
## utilities                                                                                                                   1
## vancouver                                                                                                                   1
## decreasing                                                                                                                  1
## domestic                                                                                                                    1
## emitting                                                                                                                    1
## gross                                                                                                                       1
## hydro                                                                                                                       1
## manufacturing                                                                                                               1
## megatons                                                                                                                    1
## product                                                                                                                     1
## service                                                                                                                     1
## acceptance                                                                                                                  1
## access                                                                                                                      1
## authority                                                                                                                   1
## citizens                                                                                                                    1
## creek                                                                                                                       1
## decisionmaking                                                                                                              1
## exercise                                                                                                                    1
## expected                                                                                                                    1
## fairy                                                                                                                       1
## gaslink                                                                                                                     1
## going                                                                                                                       1
## landscape                                                                                                                   1
## pipeline                                                                                                                    1
## protest                                                                                                                     1
## protocol                                                                                                                    1
## right                                                                                                                       1
## undrip                                                                                                                      1
## wet’suwet’en                                                                                                                1
## collaborating                                                                                                               1
## crisis”                                                                                                                     1
## focusing                                                                                                                    1
## followed                                                                                                                    1
## formed                                                                                                                      1
## furthering                                                                                                                  1
## highlighted                                                                                                                 1
## investing                                                                                                                   1
## money                                                                                                                       1
## ndp                                                                                                                         1
## prepare                                                                                                                     1
## prevention                                                                                                                  1
## resilient                                                                                                                   1
## set                                                                                                                         1
## setting                                                                                                                     1
## wildfires                                                                                                                   1
## “climate                                                                                                                    1
## affecting                                                                                                                   1
## affirms                                                                                                                     1
## assessment                                                                                                                  1
## call                                                                                                                        1
## consumption                                                                                                                 1
## currently                                                                                                                   1
## drives                                                                                                                      1
## exceed                                                                                                                      1
## experts                                                                                                                     1
## fall                                                                                                                        1
## life                                                                                                                        1
## likely                                                                                                                      1
## newest                                                                                                                      1
## reductions”                                                                                                                 1
## responsible                                                                                                                 1
## special                                                                                                                     1
## sustainability                                                                                                              1
## understanding                                                                                                               1
## unless                                                                                                                      1
## update                                                                                                                      1
## written                                                                                                                     1
## “deep                                                                                                                       1
## agreed                                                                                                                      1
## binding                                                                                                                     1
## detailed                                                                                                                    1
## legally                                                                                                                     1
## motivated                                                                                                                   1
## preferably                                                                                                                  1
## ratified                                                                                                                    1
## sovereign                                                                                                                   1
## submit                                                                                                                      1
## treaty                                                                                                                      1
## available                                                                                                                   1
## aware                                                                                                                       1
## best                                                                                                                        1
## diversifying                                                                                                                1
## economies                                                                                                                   1
## efforts                                                                                                                     1
## enacting                                                                                                                    1
## evaluating                                                                                                                  1
## financing                                                                                                                   1
## guided                                                                                                                      1
## knowledge“                                                                                                                  1
## mobilizing                                                                                                                  1
## planning                                                                                                                    1
## programs                                                                                                                    1
## responses                                                                                                                   1
## transparent                                                                                                                 1
## unfcc                                                                                                                       1
## vision“                                                                                                                     1
## “                                                                                                                           1
## “longterm                                                                                                                   1
## cutting                                                                                                                     1
## enhanced                                                                                                                    1
## families                                                                                                                    1
## habitats                                                                                                                    1
## household                                                                                                                   1
## innovating                                                                                                                  1
## original                                                                                                                    1
## outlining                                                                                                                   1
## rebates                                                                                                                     1
## respecting                                                                                                                  1
## submitted                                                                                                                   1
## bioeconomy                                                                                                                  1
## climatechange                                                                                                               1
## collecting                                                                                                                  1
## cultivated                                                                                                                  1
## data                                                                                                                        1
## extend                                                                                                                      1
## fisheries                                                                                                                   1
## globally                                                                                                                    1
## map                                                                                                                         1
## preparedness                                                                                                                1
## purposes                                                                                                                    1
## ready                                                                                                                       1
## released                                                                                                                    1
## road                                                                                                                        1
## targeted                                                                                                                    1
## accelerator                                                                                                                 1
## allow                                                                                                                       1
## capped                                                                                                                      1
## cumulatively                                                                                                                1
## offered                                                                                                                     1
## proposals                                                                                                                   1
## reviewed                                                                                                                    1
## america                                                                                                                     1
## applied                                                                                                                     1
## canadians                                                                                                                   1
## credit                                                                                                                      1
## fueltype                                                                                                                    1
## kind                                                                                                                        1
## metric                                                                                                                      1
## middleincome                                                                                                                1
## purchase                                                                                                                    1
## rebated                                                                                                                     1
## solution                                                                                                                    1
## starting                                                                                                                    1
## taxes                                                                                                                       1
## ton                                                                                                                         1
## charging                                                                                                                    1
## deferring                                                                                                                   1
## electrifying                                                                                                                1
## expanding                                                                                                                   1
## installations                                                                                                               1
## passenger                                                                                                                   1
## previously                                                                                                                  1
## promises                                                                                                                    1
## promoting                                                                                                                   1
## pump                                                                                                                        1
## subsidizing                                                                                                                 1
## vehicles                                                                                                                    1
## world                                                                                                                       1
## zeroemission                                                                                                                1
## competitively                                                                                                               1
## final                                                                                                                       1
## leader                                                                                                                      1
## move                                                                                                                        1
## sections                                                                                                                    1
## rest                                                                                                                        1
## “inform                                                                                                                     1
## ”                                                                                                                           1
## analyzing                                                                                                                   1
## impacted                                                                                                                    1
## inform                                                                                                                      1
## understand                                                                                                                  1
## barometric                                                                                                                  1
## common                                                                                                                      1
## difference                                                                                                                  1
## distinguishing                                                                                                              1
## hourly                                                                                                                      1
## influences                                                                                                                  1
## recognize                                                                                                                   1
## seasonally                                                                                                                  1
## speed                                                                                                                       1
## start                                                                                                                       1
## statistical                                                                                                                 1
## variabilities                                                                                                               1
## vary                                                                                                                        1
## alternating                                                                                                                 1
## canada‘s                                                                                                                    1
## climatic                                                                                                                    1
## frostfree                                                                                                                   1
## lots                                                                                                                        1
## lowpressure                                                                                                                 1
## moderating                                                                                                                  1
## multiyear                                                                                                                   1
## periods                                                                                                                     1
## prevailing                                                                                                                  1
## rainfall                                                                                                                    1
## seasonal                                                                                                                    1
## warmest                                                                                                                     1
## west                                                                                                                        1
## winds                                                                                                                       1
## basins                                                                                                                      1
## block                                                                                                                       1
## columbia                                                                                                                    1
## coming                                                                                                                      1
## distance                                                                                                                    1
## distribute                                                                                                                  1
## eastern                                                                                                                     1
## elevation                                                                                                                   1
## exposure                                                                                                                    1
## gradient                                                                                                                    1
## great                                                                                                                       1
## islands                                                                                                                     1
## marine                                                                                                                      1
## masses                                                                                                                      1
## mild                                                                                                                        1
## northsouth                                                                                                                  1
## parallel                                                                                                                    1
## prairies                                                                                                                    1
## separated                                                                                                                   1
## afternoons                                                                                                                  1
## brings                                                                                                                      1
## driest                                                                                                                      1
## dryer                                                                                                                       1
## elevations                                                                                                                  1
## experiences                                                                                                                 1
## generating                                                                                                                  1
## higher                                                                                                                      1
## rainshadow                                                                                                                  1
## range                                                                                                                       1
## side                                                                                                                        1
## slopes                                                                                                                      1
## southcentral                                                                                                                1
## spring                                                                                                                      1
## thunderstorm                                                                                                                1
## valleybottoms                                                                                                               1
## valleys                                                                                                                     1
## westerly                                                                                                                    1
## wet                                                                                                                         1
## days                                                                                                                        1
## declared                                                                                                                    1
## dramatic                                                                                                                    1
## history                                                                                                                     1
## lives                                                                                                                       1
## longest                                                                                                                     1
## recordbreaking                                                                                                              1
## waves                                                                                                                       1
## wild                                                                                                                        1
## worst                                                                                                                       1
## floods                                                                                                                      1
## george                                                                                                                      1
## harbour                                                                                                                     1
## hot                                                                                                                         1
## june                                                                                                                        1
## lytton                                                                                                                      1
## prince                                                                                                                      1
## third                                                                                                                       1
## victoria                                                                                                                    1
## anything                                                                                                                    1
## etal                                                                                                                        1
## glaciers                                                                                                                    1
## mention                                                                                                                     1
## moisture                                                                                                                    1
## page                                                                                                                        1
## spittlehouse                                                                                                                1
## normals                                                                                                                     1
## compared                                                                                                                    1
## norm                                                                                                                        1
## year                                                                                                                        1
## max                                                                                                                         1
## min                                                                                                                         1
## norms                                                                                                                       1
## precip                                                                                                                      1
## temp                                                                                                                        1
## differ                                                                                                                      1
## mean                                                                                                                        1
## planetary                                                                                                                   1
## leading                                                                                                                     1
## jurisdiction                                                                                                                1
## actuaries                                                                                                                   1
## index                                                                                                                       1
## asterix                                                                                                                     1
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                        1
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                           1
## strength                                                                                                                    1
## forecast                                                                                                                    1
## modeled                                                                                                                     1
## prediction                                                                                                                  1
## projection                                                                                                                  1
## see                                                                                                                         1
## httpstwittercomthomasforbcstatuss                                                                                           1
## amount                                                                                                                      1
## drying                                                                                                                      1
## melt                                                                                                                        1
## persistence                                                                                                                 1
## snowpack                                                                                                                    1
## get                                                                                                                         1
## hotter                                                                                                                      1
## summers                                                                                                                     1
## trend                                                                                                                       1
## months                                                                                                                      1
## decadal                                                                                                                     1
## american                                                                                                                    1
## lifetime                                                                                                                    1
## pattern                                                                                                                     1
## amplified                                                                                                                   1
## coincided                                                                                                                   1
## cycles                                                                                                                      1
## series                                                                                                                      1
## imbalance                                                                                                                   1
## increases                                                                                                                   1
## keeping                                                                                                                     1
## relative                                                                                                                    1
## transfer                                                                                                                    1
## •                                                                                                                           1
## affects                                                                                                                     1
## heating                                                                                                                     1
## slowly                                                                                                                      1
## cumulative                                                                                                                  1
## deforestation                                                                                                               1
## esp                                                                                                                         1
## march                                                                                                                       1
## nitrous                                                                                                                     1
## oxide                                                                                                                       1
## httpsbritishcolumbiacombcweatherbc                                                                                          1
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                    1
## httpsopentextbccageographychapterclimateenvironmentbc                                                                       1
## httpsclimatechangecanadacabritishcolumbia                                                                                   1
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                         1
## guiding                                                                                                                     1
## makers                                                                                                                      1
## presented                                                                                                                   1
## scientists                                                                                                                  1
## considers                                                                                                                   1
## bc’                                                                                                                         1
## depends                                                                                                                     1
## grasslands                                                                                                                  1
## healthier                                                                                                                   1
## matter                                                                                                                      1
## nature                                                                                                                      1
## particulate                                                                                                                 1
## retention                                                                                                                   1
## shrubs                                                                                                                      1
## stored                                                                                                                      1
## zone                                                                                                                        1
## ‘beautiful                                                                                                                  1
## accessible                                                                                                                  1
## distributed                                                                                                                 1
## excluded                                                                                                                    1
## inclusive                                                                                                                   1
## inequality                                                                                                                  1
## multiple                                                                                                                    1
## reductions                                                                                                                  1
## spreading                                                                                                                   1
## thus                                                                                                                        1
## consultation                                                                                                                1
## diesel                                                                                                                      1
## generators                                                                                                                  1
## relations                                                                                                                   1
## reliance                                                                                                                    1
## develop                                                                                                                     1
## environments                                                                                                                1
## explore                                                                                                                     1
## inspired                                                                                                                    1
## lowemission                                                                                                                 1
## researchers                                                                                                                 1
## revitalized                                                                                                                 1
## skilled                                                                                                                     1
## smooth                                                                                                                      1
## student                                                                                                                     1
## chance                                                                                                                      1
## cycling                                                                                                                     1
## diversification                                                                                                             1
## managed                                                                                                                     1
## newly                                                                                                                       1
## nutrient                                                                                                                    1
## preservation                                                                                                                1
## purification                                                                                                                1
## recreation                                                                                                                  1
## rethink                                                                                                                     1
## spirituality                                                                                                                1
## stewardship                                                                                                                 1
## tissue                                                                                                                      1
## wildlife                                                                                                                    1
## woody                                                                                                                       1
## abound                                                                                                                      1
## contribution                                                                                                                1
## ensures                                                                                                                     1
## farming                                                                                                                     1
## importing                                                                                                                   1
## preserving                                                                                                                  1
## ranching                                                                                                                    1
## rebuilt                                                                                                                     1
## recently                                                                                                                    1
## reduces                                                                                                                     1
## reserve                                                                                                                     1
## destructive                                                                                                                 1
## environmentally                                                                                                             1
## preparing                                                                                                                   1
## reconstruct                                                                                                                 1
## thrive                                                                                                                      1
## zoning                                                                                                                      1
## cite                                                                                                                        1
## cleaning                                                                                                                    1
## covid                                                                                                                       1
## greatly                                                                                                                     1
## lockdown                                                                                                                    1
## looking                                                                                                                     1
## markets                                                                                                                     1
## pays                                                                                                                        1
## polluter                                                                                                                    1
## principle                                                                                                                   1
## providing                                                                                                                   1
## reassessing                                                                                                                 1
## reevaluate                                                                                                                  1
## something                                                                                                                   1
## try                                                                                                                         1
## interests                                                                                                                   1
## involves                                                                                                                    1
## myriad                                                                                                                      1
## detractors                                                                                                                  1
## measure                                                                                                                     1
## supporters                                                                                                                  1
## highlight                                                                                                                   1
## might                                                                                                                       1
## mitigated                                                                                                                   1
## overcome                                                                                                                    1
## ided                                                                                                                        1
## discuss                                                                                                                     1
## displaced                                                                                                                   1
## communicate                                                                                                                 1
## inspire                                                                                                                     1
## accepting                                                                                                                   1
## comes                                                                                                                       1
## continuing                                                                                                                  1
## directions                                                                                                                  1
## emit                                                                                                                        1
## expensive                                                                                                                   1
## inherent                                                                                                                    1
## paths                                                                                                                       1
## problem                                                                                                                     1
## relying                                                                                                                     1
## researching                                                                                                                 1
## simply                                                                                                                      1
## source                                                                                                                      1
## suggest                                                                                                                     1
## timelines                                                                                                                   1
## unproven                                                                                                                    1
## concerns                                                                                                                    1
## give                                                                                                                        1
## legitimate                                                                                                                  1
## oceans”                                                                                                                     1
## places                                                                                                                      1
## protect                                                                                                                     1
## raised                                                                                                                      1
## shellfish                                                                                                                   1
## shells                                                                                                                      1
## shortterm                                                                                                                   1
## “irreversible                                                                                                               1
## advisory                                                                                                                    1
## advocating                                                                                                                  1
## businesses                                                                                                                  1
## consumers                                                                                                                   1
## disabled                                                                                                                    1
## individual                                                                                                                  1
## member                                                                                                                      1
## missing                                                                                                                     1
## organizations                                                                                                               1
## poverty                                                                                                                     1
## seeking                                                                                                                     1
## accepted                                                                                                                    1
## declaration                                                                                                                 1
## departments                                                                                                                 1
## drip                                                                                                                        1
## engagement                                                                                                                  1
## forms                                                                                                                       1
## governance                                                                                                                  1
## hereditary                                                                                                                  1
## indian                                                                                                                      1
## lands                                                                                                                       1
## peoples                                                                                                                     1
## personnel                                                                                                                   1
## protocols                                                                                                                   1
## reservation                                                                                                                 1
## situated                                                                                                                    1
## territorial                                                                                                                 1
## treaties                                                                                                                    1
## decline                                                                                                                     1
## except                                                                                                                      1
## expansion                                                                                                                   1
## general                                                                                                                     1
## greenenergy                                                                                                                 1
## retirements                                                                                                                 1
## socioeconomic                                                                                                               1
## absorption                                                                                                                  1
## ecoservices                                                                                                                 1
## insect                                                                                                                      1
## pause                                                                                                                       1
## stressed                                                                                                                    1
## system                                                                                                                      1
## techniques                                                                                                                  1
## uncertainty                                                                                                                 1
## unsustainable                                                                                                               1
## addressed                                                                                                                   1
## alternate                                                                                                                   1
## became                                                                                                                      1
## grown                                                                                                                       1
## locally                                                                                                                     1
## prone                                                                                                                       1
## remain                                                                                                                      1
## toxins                                                                                                                      1
## adaption                                                                                                                    1
## anew                                                                                                                        1
## considered                                                                                                                  1
## expense                                                                                                                     1
## farm                                                                                                                        1
## income                                                                                                                      1
## infrastructure”                                                                                                             1
## lost                                                                                                                        1
## policies”                                                                                                                   1
## require                                                                                                                     1
## results                                                                                                                     1
## “ambitious                                                                                                                  1
## “systemic                                                                                                                   1
## comparisons                                                                                                                 1
## previous                                                                                                                    1
## conclusions                                                                                                                 1
## summaryconclude                                                                                                             1
## parts                                                                                                                       1
## open                                                                                                                        1
## paragraph                                                                                                                   1
## parti                                                                                                                       1
## along                                                                                                                       1
## demographic                                                                                                                 1
## varying                                                                                                                     1
## actor                                                                                                                       1
## pick                                                                                                                        1
## fulfillment                                                                                                                 1
## identification                                                                                                              1
## issue                                                                                                                       1
## suggested                                                                                                                   1
## actionoriented                                                                                                              1
## inclusion                                                                                                                   1
## practical                                                                                                                   1
## rationales                                                                                                                  1
## term                                                                                                                        1
## think                                                                                                                       1
## underway                                                                                                                    1
## factor                                                                                                                      1
## consideration                                                                                                               1
## number                                                                                                                      1
## order                                                                                                                       1
## posed                                                                                                                       1
## strategic                                                                                                                   1
## avoid                                                                                                                       1
## linealigned                                                                                                                 1
## sake                                                                                                                        1
## sure                                                                                                                        1
## thought                                                                                                                     1
## wise                                                                                                                        1
## appropriate                                                                                                                 1
## estate                                                                                                                      1
## extraction                                                                                                                  1
## real                                                                                                                        1
## restore                                                                                                                     1
## valuable                                                                                                                    1
## assure                                                                                                                      1
## fair                                                                                                                        1
## finance                                                                                                                     1
## industrial                                                                                                                  1
## just                                                                                                                        1
## supportive                                                                                                                  1
## green                                                                                                                       1
## process                                                                                                                     1
## relationships                                                                                                               1
## together                                                                                                                    1
## carbonfree                                                                                                                  1
## design                                                                                                                      1
## engineer                                                                                                                    1
## innovate                                                                                                                    1
## maintain                                                                                                                    1
## produce                                                                                                                     1
## train                                                                                                                       1
## transitioning                                                                                                               1
## young                                                                                                                       1
## capture                                                                                                                     1
## deciduous                                                                                                                   1
## diverse                                                                                                                     1
## effectively                                                                                                                 1
## firebreak                                                                                                                   1
## functions                                                                                                                   1
## mills                                                                                                                       1
## refit                                                                                                                       1
## smaller                                                                                                                     1
## tree                                                                                                                        1
## compliance                                                                                                                  1
## continuation                                                                                                                1
## enforcement                                                                                                                 1
## equipment                                                                                                                   1
## gaspowered                                                                                                                  1
## innovations                                                                                                                 1
## replace                                                                                                                     1
## demolishing                                                                                                                 1
## don’t                                                                                                                       1
## fireresiliency                                                                                                              1
## focus                                                                                                                       1
## restoring                                                                                                                   1
## risk                                                                                                                        1
## safe                                                                                                                        1
## structures                                                                                                                  1
## updating                                                                                                                    1
## exhaustive                                                                                                                  1
## ‘lens’                                                                                                                      1
## sense                                                                                                                       1
## urgency                                                                                                                     1
## ultimate                                                                                                                    1
## initiating                                                                                                                  1
## lead                                                                                                                        1
## market                                                                                                                      1
## initial                                                                                                                     1
## outline                                                                                                                     1
## refer                                                                                                                       1
## difference’                                                                                                                 1
## know                                                                                                                        1
## recognizing                                                                                                                 1
## ‘make                                                                                                                       1
## honour                                                                                                                      1
## reason                                                                                                                      1
## reports                                                                                                                     1
## taking                                                                                                                      1
## british                                                                                                                     1
## business                                                                                                                    1
## columbians                                                                                                                  1
## ensured                                                                                                                     1
## stewarding                                                                                                                  1
## unique                                                                                                                      1
## vibrant                                                                                                                     1

3.4 Wordcloud - 22 min frequency

# http://www.sthda.com/english/wiki/word-cloud-generator-in-r-one-killer-function-to-do-everything-you-need
source('http://www.sthda.com/upload/rquery_wordcloud.r')
wc <-rquery.wordcloud("EOS365-FinalProject-TextAnalysis.txt", 
                      type ="file", lang = "english", 
                      max.words = 10000, min.freq = 22,
                      colorPalette = "Set1")

wc
## $tdm
## <<TermDocumentMatrix (terms: 1282, documents: 333)>>
## Non-/sparse entries: 2969/423937
## Sparsity           : 99%
## Maximal term length: 120
## Weighting          : term frequency (tf)
## 
## $freqTable
##                                                                                                                                                                                                                                              word
## climate                                                                                                                                                                                                                                   climate
## emissions                                                                                                                                                                                                                               emissions
## bc’s                                                                                                                                                                                                                                         bc’s
## will                                                                                                                                                                                                                                         will
## change                                                                                                                                                                                                                                     change
## reduce                                                                                                                                                                                                                                     reduce
## carbon                                                                                                                                                                                                                                     carbon
## help                                                                                                                                                                                                                                         help
## regions                                                                                                                                                                                                                                   regions
## ghg                                                                                                                                                                                                                                           ghg
## action                                                                                                                                                                                                                                     action
## future                                                                                                                                                                                                                                     future
## indigenous                                                                                                                                                                                                                             indigenous
## challenges                                                                                                                                                                                                                             challenges
## weather                                                                                                                                                                                                                                   weather
## temperature                                                                                                                                                                                                                           temperature
## also                                                                                                                                                                                                                                         also
## industry                                                                                                                                                                                                                                 industry
## opportunity                                                                                                                                                                                                                           opportunity
## changing                                                                                                                                                                                                                                 changing
## social                                                                                                                                                                                                                                     social
## economic                                                                                                                                                                                                                                 economic
## building                                                                                                                                                                                                                                 building
## opportunities                                                                                                                                                                                                                       opportunities
## recommendations                                                                                                                                                                                                                   recommendations
## new                                                                                                                                                                                                                                           new
## mitigation                                                                                                                                                                                                                             mitigation
## gas                                                                                                                                                                                                                                           gas
## including                                                                                                                                                                                                                               including
## paris                                                                                                                                                                                                                                       paris
## provincial                                                                                                                                                                                                                             provincial
## canada’s                                                                                                                                                                                                                                 canada’s
## land                                                                                                                                                                                                                                         land
## development                                                                                                                                                                                                                           development
## energy                                                                                                                                                                                                                                     energy
## reducing                                                                                                                                                                                                                                 reducing
## words                                                                                                                                                                                                                                       words
## –                                                                                                                                                                                                                                               –
## can                                                                                                                                                                                                                                           can
## strategies                                                                                                                                                                                                                             strategies
## global                                                                                                                                                                                                                                     global
## increased                                                                                                                                                                                                                               increased
## agriculture                                                                                                                                                                                                                           agriculture
## natural                                                                                                                                                                                                                                   natural
## need                                                                                                                                                                                                                                         need
## skills                                                                                                                                                                                                                                     skills
## recommendation                                                                                                                                                                                                                     recommendation
## food                                                                                                                                                                                                                                         food
## supporting                                                                                                                                                                                                                             supporting
## changes                                                                                                                                                                                                                                   changes
## challenge                                                                                                                                                                                                                               challenge
## forests                                                                                                                                                                                                                                   forests
## communities                                                                                                                                                                                                                           communities
## adaptation                                                                                                                                                                                                                             adaptation
## clean                                                                                                                                                                                                                                       clean
## technology                                                                                                                                                                                                                             technology
## benefits                                                                                                                                                                                                                                 benefits
## provide                                                                                                                                                                                                                                   provide
## events                                                                                                                                                                                                                                     events
## different                                                                                                                                                                                                                               different
## people                                                                                                                                                                                                                                     people
## political                                                                                                                                                                                                                               political
## ipcc                                                                                                                                                                                                                                         ipcc
## growth                                                                                                                                                                                                                                     growth
## region                                                                                                                                                                                                                                     region
## interior                                                                                                                                                                                                                                 interior
## buildings                                                                                                                                                                                                                               buildings
## oil                                                                                                                                                                                                                                           oil
## transportation                                                                                                                                                                                                                     transportation
## protecting                                                                                                                                                                                                                             protecting
## training                                                                                                                                                                                                                                 training
## agreement                                                                                                                                                                                                                               agreement
## integrity                                                                                                                                                                                                                               integrity
## well                                                                                                                                                                                                                                         well
## section                                                                                                                                                                                                                                   section
## extreme                                                                                                                                                                                                                                   extreme
## air                                                                                                                                                                                                                                           air
## environmental                                                                                                                                                                                                                       environmental
## needs                                                                                                                                                                                                                                       needs
## support                                                                                                                                                                                                                                   support
## ocean                                                                                                                                                                                                                                       ocean
## biodiversity                                                                                                                                                                                                                         biodiversity
## include                                                                                                                                                                                                                                   include
## increasing                                                                                                                                                                                                                             increasing
## first                                                                                                                                                                                                                                       first
## urgent                                                                                                                                                                                                                                     urgent
## commitments                                                                                                                                                                                                                           commitments
## capacity                                                                                                                                                                                                                                 capacity
## security                                                                                                                                                                                                                                 security
## ecological                                                                                                                                                                                                                             ecological
## lowcarbon                                                                                                                                                                                                                               lowcarbon
## atmospheric                                                                                                                                                                                                                           atmospheric
## services                                                                                                                                                                                                                                 services
## analysis                                                                                                                                                                                                                                 analysis
## report                                                                                                                                                                                                                                     report
## cleanbc                                                                                                                                                                                                                                   cleanbc
## ndc                                                                                                                                                                                                                                           ndc
## mountains                                                                                                                                                                                                                               mountains
## regional                                                                                                                                                                                                                                 regional
## groups                                                                                                                                                                                                                                     groups
## north                                                                                                                                                                                                                                       north
## potential                                                                                                                                                                                                                               potential
## coastal                                                                                                                                                                                                                                   coastal
## adapt                                                                                                                                                                                                                                       adapt
## commitment                                                                                                                                                                                                                             commitment
## past                                                                                                                                                                                                                                         past
## since                                                                                                                                                                                                                                       since
## climates                                                                                                                                                                                                                                 climates
## find                                                                                                                                                                                                                                         find
## levels                                                                                                                                                                                                                                     levels
## °c                                                                                                                                                                                                                                             °c
## temperatures                                                                                                                                                                                                                         temperatures
## years                                                                                                                                                                                                                                       years
## ensuring                                                                                                                                                                                                                                 ensuring
## equity                                                                                                                                                                                                                                     equity
## precipitation                                                                                                                                                                                                                       precipitation
## summary                                                                                                                                                                                                                                   summary
## systems                                                                                                                                                                                                                                   systems
## century                                                                                                                                                                                                                                   century
## incorporate                                                                                                                                                                                                                           incorporate
## solutions                                                                                                                                                                                                                               solutions
## water                                                                                                                                                                                                                                       water
## ensure                                                                                                                                                                                                                                     ensure
## important                                                                                                                                                                                                                               important
## accord                                                                                                                                                                                                                                     accord
## address                                                                                                                                                                                                                                   address
## canada                                                                                                                                                                                                                                     canada
## impacts                                                                                                                                                                                                                                   impacts
## international                                                                                                                                                                                                                       international
## warming                                                                                                                                                                                                                                   warming
## pacific                                                                                                                                                                                                                                   pacific
## province                                                                                                                                                                                                                                 province
## south                                                                                                                                                                                                                                       south
## health                                                                                                                                                                                                                                     health
## population                                                                                                                                                                                                                             population
## result                                                                                                                                                                                                                                     result
## though                                                                                                                                                                                                                                     though
## within                                                                                                                                                                                                                                     within
## forestry                                                                                                                                                                                                                                 forestry
## key                                                                                                                                                                                                                                           key
## sectors                                                                                                                                                                                                                                   sectors
## actions                                                                                                                                                                                                                                   actions
## continue                                                                                                                                                                                                                                 continue
## local                                                                                                                                                                                                                                       local
## based                                                                                                                                                                                                                                       based
## flooding                                                                                                                                                                                                                                 flooding
## canadian                                                                                                                                                                                                                                 canadian
## goals                                                                                                                                                                                                                                       goals
## time                                                                                                                                                                                                                                         time
## jobs                                                                                                                                                                                                                                         jobs
## economy                                                                                                                                                                                                                                   economy
## forest                                                                                                                                                                                                                                     forest
## fulfill                                                                                                                                                                                                                                   fulfill
## reduction                                                                                                                                                                                                                               reduction
## innovative                                                                                                                                                                                                                             innovative
## mitigate                                                                                                                                                                                                                                 mitigate
## policy                                                                                                                                                                                                                                     policy
## trees                                                                                                                                                                                                                                       trees
## become                                                                                                                                                                                                                                     become
## work                                                                                                                                                                                                                                         work
## make                                                                                                                                                                                                                                         make
## communication                                                                                                                                                                                                                       communication
## copied                                                                                                                                                                                                                                     copied
## edited                                                                                                                                                                                                                                     edited
## managing                                                                                                                                                                                                                                 managing
## still                                                                                                                                                                                                                                       still
## part                                                                                                                                                                                                                                         part
## contribute                                                                                                                                                                                                                             contribute
## live                                                                                                                                                                                                                                         live
## respond                                                                                                                                                                                                                                   respond
## accelerated                                                                                                                                                                                                                           accelerated
## plan                                                                                                                                                                                                                                         plan
## area                                                                                                                                                                                                                                         area
## mountain                                                                                                                                                                                                                                 mountain
## northern                                                                                                                                                                                                                                 northern
## total                                                                                                                                                                                                                                       total
## creating                                                                                                                                                                                                                                 creating
## districts                                                                                                                                                                                                                               districts
## high                                                                                                                                                                                                                                         high
## use                                                                                                                                                                                                                                           use
## increase                                                                                                                                                                                                                                 increase
## less                                                                                                                                                                                                                                         less
## may                                                                                                                                                                                                                                           may
## projected                                                                                                                                                                                                                               projected
## workers                                                                                                                                                                                                                                   workers
## central                                                                                                                                                                                                                                   central
## experienced                                                                                                                                                                                                                           experienced
## coast                                                                                                                                                                                                                                       coast
## gdp                                                                                                                                                                                                                                           gdp
## government                                                                                                                                                                                                                             government
## recent                                                                                                                                                                                                                                     recent
## financial                                                                                                                                                                                                                               financial
## recovery                                                                                                                                                                                                                                 recovery
## wildfire                                                                                                                                                                                                                                 wildfire
## balance                                                                                                                                                                                                                                   balance
## healthy                                                                                                                                                                                                                                   healthy
## rise                                                                                                                                                                                                                                         rise
## effects                                                                                                                                                                                                                                   effects
## knowledge                                                                                                                                                                                                                               knowledge
## resilience                                                                                                                                                                                                                             resilience
## traditional                                                                                                                                                                                                                           traditional
## competitive                                                                                                                                                                                                                           competitive
## emission                                                                                                                                                                                                                                 emission
## encourage                                                                                                                                                                                                                               encourage
## fuel                                                                                                                                                                                                                                         fuel
## tax                                                                                                                                                                                                                                           tax
## costs                                                                                                                                                                                                                                       costs
## sector                                                                                                                                                                                                                                     sector
## workforce                                                                                                                                                                                                                               workforce
## becoming                                                                                                                                                                                                                                 becoming
## patterns                                                                                                                                                                                                                                 patterns
## period                                                                                                                                                                                                                                     period
## summer                                                                                                                                                                                                                                     summer
## winter                                                                                                                                                                                                                                     winter
## cold                                                                                                                                                                                                                                         cold
## warm                                                                                                                                                                                                                                         warm
## wetter                                                                                                                                                                                                                                     wetter
## fires                                                                                                                                                                                                                                       fires
## observed                                                                                                                                                                                                                                 observed
## look                                                                                                                                                                                                                                         look
## lecture                                                                                                                                                                                                                                   lecture
##                                                                                                                                                                                                                                                
## methane                                                                                                                                                                                                                                   methane
## offer                                                                                                                                                                                                                                       offer
## build                                                                                                                                                                                                                                       build
## rebuilding                                                                                                                                                                                                                             rebuilding
## way                                                                                                                                                                                                                                           way
## intro                                                                                                                                                                                                                                       intro
## background                                                                                                                                                                                                                             background
## developing                                                                                                                                                                                                                             developing
## geographic                                                                                                                                                                                                                             geographic
## includes                                                                                                                                                                                                                                 includes
## industries                                                                                                                                                                                                                             industries
## information                                                                                                                                                                                                                           information
## used                                                                                                                                                                                                                                         used
## created                                                                                                                                                                                                                                   created
## dioxide                                                                                                                                                                                                                                   dioxide
## earth’s                                                                                                                                                                                                                                   earth’s
## issues                                                                                                                                                                                                                                     issues
## obligations                                                                                                                                                                                                                           obligations
## roadmap                                                                                                                                                                                                                                   roadmap
## crown                                                                                                                                                                                                                                       crown
## east                                                                                                                                                                                                                                         east
## hectares                                                                                                                                                                                                                                 hectares
## million                                                                                                                                                                                                                                   million
## ranges                                                                                                                                                                                                                                     ranges
## western                                                                                                                                                                                                                                   western
## biogeoclimatic                                                                                                                                                                                                                     biogeoclimatic
## manage                                                                                                                                                                                                                                     manage
## vegetation                                                                                                                                                                                                                             vegetation
## demographics                                                                                                                                                                                                                         demographics
## areas                                                                                                                                                                                                                                       areas
## territories                                                                                                                                                                                                                           territories
## dry                                                                                                                                                                                                                                           dry
## geography                                                                                                                                                                                                                               geography
## construction                                                                                                                                                                                                                         construction
## logging                                                                                                                                                                                                                                   logging
## prior                                                                                                                                                                                                                                       prior
## rights                                                                                                                                                                                                                                     rights
## cpas                                                                                                                                                                                                                                         cpas
## following                                                                                                                                                                                                                               following
## infrastructure                                                                                                                                                                                                                     infrastructure
## nations                                                                                                                                                                                                                                   nations
## next                                                                                                                                                                                                                                         next
## plans                                                                                                                                                                                                                                       plans
## policies                                                                                                                                                                                                                                 policies
## targets                                                                                                                                                                                                                                   targets
## affordable                                                                                                                                                                                                                             affordable
## innovation                                                                                                                                                                                                                             innovation
## keep                                                                                                                                                                                                                                         keep
## limit                                                                                                                                                                                                                                       limit
## made                                                                                                                                                                                                                                         made
## preindustrial                                                                                                                                                                                                                       preindustrial
## production                                                                                                                                                                                                                             production
## sustainable                                                                                                                                                                                                                           sustainable
## every                                                                                                                                                                                                                                       every
## reduced                                                                                                                                                                                                                                   reduced
## education                                                                                                                                                                                                                               education
## encouraging                                                                                                                                                                                                                           encouraging
## equitable                                                                                                                                                                                                                               equitable
## experience                                                                                                                                                                                                                             experience
## incorporating                                                                                                                                                                                                                       incorporating
## learning                                                                                                                                                                                                                                 learning
## taken                                                                                                                                                                                                                                       taken
## creation                                                                                                                                                                                                                                 creation
## goal                                                                                                                                                                                                                                         goal
## homes                                                                                                                                                                                                                                       homes
## increasingly                                                                                                                                                                                                                         increasingly
## per                                                                                                                                                                                                                                           per
## pollution                                                                                                                                                                                                                               pollution
## beyond                                                                                                                                                                                                                                     beyond
## community                                                                                                                                                                                                                               community
## create                                                                                                                                                                                                                                     create
## ecosystem                                                                                                                                                                                                                               ecosystem
## helping                                                                                                                                                                                                                                   helping
## strategy                                                                                                                                                                                                                                 strategy
## technologies                                                                                                                                                                                                                         technologies
## fund                                                                                                                                                                                                                                         fund
## projects                                                                                                                                                                                                                                 projects
## research                                                                                                                                                                                                                                 research
## incentives                                                                                                                                                                                                                             incentives
## large                                                                                                                                                                                                                                       large
## heat                                                                                                                                                                                                                                         heat
## continues                                                                                                                                                                                                                               continues
## present                                                                                                                                                                                                                                   present
## variations                                                                                                                                                                                                                             variations
## averages                                                                                                                                                                                                                                 averages
## duration                                                                                                                                                                                                                                 duration
## wind                                                                                                                                                                                                                                         wind
## associated                                                                                                                                                                                                                             associated
## atmosphere                                                                                                                                                                                                                             atmosphere
## circulation                                                                                                                                                                                                                           circulation
## flow                                                                                                                                                                                                                                         flow
## good                                                                                                                                                                                                                                         good
## long                                                                                                                                                                                                                                         long
## season                                                                                                                                                                                                                                     season
## agricultural                                                                                                                                                                                                                         agricultural
## drought                                                                                                                                                                                                                                   drought
## emergency                                                                                                                                                                                                                               emergency
## november                                                                                                                                                                                                                                 november
## resulting                                                                                                                                                                                                                               resulting
## locations                                                                                                                                                                                                                               locations
## record                                                                                                                                                                                                                                     record
## recorded                                                                                                                                                                                                                                 recorded
## average                                                                                                                                                                                                                                   average
## current                                                                                                                                                                                                                                   current
## environment                                                                                                                                                                                                                           environment
## trends                                                                                                                                                                                                                                     trends
## summarize                                                                                                                                                                                                                               summarize
## check                                                                                                                                                                                                                                       check
## oscillation                                                                                                                                                                                                                           oscillation
## effect                                                                                                                                                                                                                                     effect
## ability                                                                                                                                                                                                                                   ability
## species                                                                                                                                                                                                                                   species
## landuse                                                                                                                                                                                                                                   landuse
## already                                                                                                                                                                                                                                   already
## developed                                                                                                                                                                                                                               developed
## creative                                                                                                                                                                                                                                 creative
## affect                                                                                                                                                                                                                                     affect
## nature’s                                                                                                                                                                                                                                 nature’s
## addressing                                                                                                                                                                                                                             addressing
## growing                                                                                                                                                                                                                                   growing
## transition                                                                                                                                                                                                                             transition
## instead                                                                                                                                                                                                                                   instead
## ways                                                                                                                                                                                                                                         ways
## codes                                                                                                                                                                                                                                       codes
## quality                                                                                                                                                                                                                                   quality
## plant                                                                                                                                                                                                                                       plant
## led                                                                                                                                                                                                                                           led
## introduction                                                                                                                                                                                                                         introduction
## brief                                                                                                                                                                                                                                       brief
## description                                                                                                                                                                                                                           description
## economically                                                                                                                                                                                                                         economically
## offers                                                                                                                                                                                                                                     offers
## due                                                                                                                                                                                                                                           due
## especially                                                                                                                                                                                                                             especially
## intergovernmental                                                                                                                                                                                                               intergovernmental
## panel                                                                                                                                                                                                                                       panel
## pathways                                                                                                                                                                                                                                 pathways
## required                                                                                                                                                                                                                                 required
## border                                                                                                                                                                                                                                     border
## rocky                                                                                                                                                                                                                                       rocky
## authorities                                                                                                                                                                                                                           authorities
## census                                                                                                                                                                                                                                     census
## ecosystems                                                                                                                                                                                                                             ecosystems
## geopolitical                                                                                                                                                                                                                         geopolitical
## macroclimate                                                                                                                                                                                                                         macroclimate
## municipalities                                                                                                                                                                                                                     municipalities
## school                                                                                                                                                                                                                                     school
## subdivisions                                                                                                                                                                                                                         subdivisions
## zones                                                                                                                                                                                                                                       zones
## ages                                                                                                                                                                                                                                         ages
## depending                                                                                                                                                                                                                               depending
## fewer                                                                                                                                                                                                                                       fewer
## migration                                                                                                                                                                                                                               migration
## senior                                                                                                                                                                                                                                     senior
## cities                                                                                                                                                                                                                                     cities
## mostly                                                                                                                                                                                                                                     mostly
## nation                                                                                                                                                                                                                                     nation
## rural                                                                                                                                                                                                                                       rural
## towns                                                                                                                                                                                                                                       towns
## villages                                                                                                                                                                                                                                 villages
## cariboo                                                                                                                                                                                                                                   cariboo
## mining                                                                                                                                                                                                                                     mining
## plateau                                                                                                                                                                                                                                   plateau
## private                                                                                                                                                                                                                                   private
## remote                                                                                                                                                                                                                                     remote
## specific                                                                                                                                                                                                                                 specific
## tourism                                                                                                                                                                                                                                   tourism
## contributes                                                                                                                                                                                                                           contributes
## consent                                                                                                                                                                                                                                   consent
## examples                                                                                                                                                                                                                                 examples
## forward                                                                                                                                                                                                                                   forward
## free                                                                                                                                                                                                                                         free
## informed                                                                                                                                                                                                                                 informed
## much                                                                                                                                                                                                                                         much
## oldgrowth                                                                                                                                                                                                                               oldgrowth
## subsidies                                                                                                                                                                                                                               subsidies
## territory                                                                                                                                                                                                                               territory
## unceded                                                                                                                                                                                                                                   unceded
## accomplishments                                                                                                                                                                                                                   accomplishments
## agreements                                                                                                                                                                                                                             agreements
## backdrop                                                                                                                                                                                                                                 backdrop
## budget                                                                                                                                                                                                                                     budget
## election                                                                                                                                                                                                                                 election
## federal                                                                                                                                                                                                                                   federal
## liberal                                                                                                                                                                                                                                   liberal
## majority                                                                                                                                                                                                                                 majority
## making                                                                                                                                                                                                                                     making
## management                                                                                                                                                                                                                             management
## minority                                                                                                                                                                                                                                 minority
## responsibilities                                                                                                                                                                                                                 responsibilities
## reviewing                                                                                                                                                                                                                               reviewing
## speech                                                                                                                                                                                                                                     speech
## throne                                                                                                                                                                                                                                     throne
## equality                                                                                                                                                                                                                                 equality
## netzero                                                                                                                                                                                                                                   netzero
## ppm                                                                                                                                                                                                                                           ppm
## states                                                                                                                                                                                                                                     states
## contributions                                                                                                                                                                                                                       contributions
## c°                                                                                                                                                                                                                                             c°
## determined                                                                                                                                                                                                                             determined
## nationally                                                                                                                                                                                                                             nationally
## rising                                                                                                                                                                                                                                     rising
## ambitious                                                                                                                                                                                                                               ambitious
## balancing                                                                                                                                                                                                                               balancing
## considering                                                                                                                                                                                                                           considering
## effective                                                                                                                                                                                                                               effective
## monitoring                                                                                                                                                                                                                             monitoring
## participation                                                                                                                                                                                                                       participation
## public                                                                                                                                                                                                                                     public
## rapidly                                                                                                                                                                                                                                   rapidly
## risks                                                                                                                                                                                                                                       risks
## scientific                                                                                                                                                                                                                             scientific
## technological                                                                                                                                                                                                                       technological
## vulnerable                                                                                                                                                                                                                             vulnerable
## adapting                                                                                                                                                                                                                                 adapting
## advantage                                                                                                                                                                                                                               advantage
## job                                                                                                                                                                                                                                           job
## pricing                                                                                                                                                                                                                                   pricing
## waste                                                                                                                                                                                                                                       waste
## economics                                                                                                                                                                                                                               economics
## low                                                                                                                                                                                                                                           low
## negative                                                                                                                                                                                                                                 negative
## partnerships                                                                                                                                                                                                                         partnerships
## consumer                                                                                                                                                                                                                                 consumer
## fossil                                                                                                                                                                                                                                     fossil
## introduced                                                                                                                                                                                                                             introduced
## lower                                                                                                                                                                                                                                       lower
## revenue                                                                                                                                                                                                                                   revenue
## efficient                                                                                                                                                                                                                               efficient
## electric                                                                                                                                                                                                                                 electric
## existing                                                                                                                                                                                                                                 existing
## old                                                                                                                                                                                                                                           old
## retrofitting                                                                                                                                                                                                                         retrofitting
## direct                                                                                                                                                                                                                                     direct
## obvious                                                                                                                                                                                                                                   obvious
## quest                                                                                                                                                                                                                                       quest
## take                                                                                                                                                                                                                                         take
## towards                                                                                                                                                                                                                                   towards
## factors                                                                                                                                                                                                                                   factors
## many                                                                                                                                                                                                                                         many
## clouds                                                                                                                                                                                                                                     clouds
## conditions                                                                                                                                                                                                                             conditions
## daily                                                                                                                                                                                                                                       daily
## direction                                                                                                                                                                                                                               direction
## extremes                                                                                                                                                                                                                                 extremes
## intensity                                                                                                                                                                                                                               intensity
## like                                                                                                                                                                                                                                         like
## normal                                                                                                                                                                                                                                     normal
## place                                                                                                                                                                                                                                       place
## pressure                                                                                                                                                                                                                                 pressure
## cycle                                                                                                                                                                                                                                       cycle
## highpressure                                                                                                                                                                                                                         highpressure
## influence                                                                                                                                                                                                                               influence
## influenced                                                                                                                                                                                                                             influenced
## largescale                                                                                                                                                                                                                             largescale
## maritime                                                                                                                                                                                                                                 maritime
## niño                                                                                                                                                                                                                                         niño
## small                                                                                                                                                                                                                                       small
## continental                                                                                                                                                                                                                           continental
## latitude                                                                                                                                                                                                                                 latitude
## moderate                                                                                                                                                                                                                                 moderate
## plains                                                                                                                                                                                                                                     plains
## plateaus                                                                                                                                                                                                                                 plateaus
## southern                                                                                                                                                                                                                                 southern
## varies                                                                                                                                                                                                                                     varies
## activity                                                                                                                                                                                                                                 activity
## arctic                                                                                                                                                                                                                                     arctic
## early                                                                                                                                                                                                                                       early
## largest                                                                                                                                                                                                                                   largest
## snow                                                                                                                                                                                                                                         snow
## burning                                                                                                                                                                                                                                   burning
## day                                                                                                                                                                                                                                           day
## fertile                                                                                                                                                                                                                                   fertile
## fire                                                                                                                                                                                                                                         fire
## frequency                                                                                                                                                                                                                               frequency
## human                                                                                                                                                                                                                                       human
## impact                                                                                                                                                                                                                                     impact
## one                                                                                                                                                                                                                                           one
## prairie                                                                                                                                                                                                                                   prairie
## rain                                                                                                                                                                                                                                         rain
## river                                                                                                                                                                                                                                       river
## state                                                                                                                                                                                                                                       state
## sumas                                                                                                                                                                                                                                       sumas
## values                                                                                                                                                                                                                                     values
## december                                                                                                                                                                                                                                 december
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf
## variability                                                                                                                                                                                                                           variability
## drier                                                                                                                                                                                                                                       drier
## last                                                                                                                                                                                                                                         last
## systemic                                                                                                                                                                                                                                 systemic
## maps                                                                                                                                                                                                                                         maps
## material                                                                                                                                                                                                                                 material
## expectations                                                                                                                                                                                                                         expectations
## module                                                                                                                                                                                                                                     module
## notes                                                                                                                                                                                                                                       notes
## slide                                                                                                                                                                                                                                       slide
## longterm                                                                                                                                                                                                                                 longterm
## oceans                                                                                                                                                                                                                                     oceans
## stabilize                                                                                                                                                                                                                               stabilize
## acidic                                                                                                                                                                                                                                     acidic
## habitat                                                                                                                                                                                                                                   habitat
## adaptive                                                                                                                                                                                                                                 adaptive
## vulnerabilities                                                                                                                                                                                                                   vulnerabilities
## pages                                                                                                                                                                                                                                       pages
## necessary                                                                                                                                                                                                                               necessary
## themes                                                                                                                                                                                                                                     themes
## wetlands                                                                                                                                                                                                                                 wetlands
## across                                                                                                                                                                                                                                     across
## often                                                                                                                                                                                                                                       often
## populations                                                                                                                                                                                                                           populations
## representative                                                                                                                                                                                                                     representative
## ministry                                                                                                                                                                                                                                 ministry
## reconciliation                                                                                                                                                                                                                     reconciliation
## sources                                                                                                                                                                                                                                   sources
## youth                                                                                                                                                                                                                                       youth
## cleanenergy                                                                                                                                                                                                                           cleanenergy
## employment                                                                                                                                                                                                                             employment
## force                                                                                                                                                                                                                                       force
## remove                                                                                                                                                                                                                                     remove
## resource                                                                                                                                                                                                                                 resource
## soil                                                                                                                                                                                                                                         soil
## storage                                                                                                                                                                                                                                   storage
## store                                                                                                                                                                                                                                       store
## timber                                                                                                                                                                                                                                     timber
## farms                                                                                                                                                                                                                                       farms
## flooded                                                                                                                                                                                                                                   flooded
## fraser                                                                                                                                                                                                                                     fraser
## legislation                                                                                                                                                                                                                           legislation
## manure                                                                                                                                                                                                                                     manure
## valley                                                                                                                                                                                                                                     valley
## flood                                                                                                                                                                                                                                       flood
## preserve                                                                                                                                                                                                                                 preserve
## resources                                                                                                                                                                                                                               resources
## bold                                                                                                                                                                                                                                         bold
## exists                                                                                                                                                                                                                                     exists
## invest                                                                                                                                                                                                                                     invest
## competing                                                                                                                                                                                                                               competing
## advice                                                                                                                                                                                                                                     advice
## meet                                                                                                                                                                                                                                         meet
## track                                                                                                                                                                                                                                       track
## causing                                                                                                                                                                                                                                   causing
## damage                                                                                                                                                                                                                                     damage
## protests                                                                                                                                                                                                                                 protests
## affordability                                                                                                                                                                                                                       affordability
## consider                                                                                                                                                                                                                                 consider
## council                                                                                                                                                                                                                                   council
## chiefs                                                                                                                                                                                                                                     chiefs
## continued                                                                                                                                                                                                                               continued
## ongoing                                                                                                                                                                                                                                   ongoing
## without                                                                                                                                                                                                                                   without
## rebuild                                                                                                                                                                                                                                   rebuild
## using                                                                                                                                                                                                                                       using
## list                                                                                                                                                                                                                                         list
## foster                                                                                                                                                                                                                                     foster
## …                                                                                                                                                                                                                                               …
## needed                                                                                                                                                                                                                                     needed
## conclusion                                                                                                                                                                                                                             conclusion
## cabinet                                                                                                                                                                                                                                   cabinet
## confidential                                                                                                                                                                                                                         confidential
## considerations                                                                                                                                                                                                                     considerations
## discussion                                                                                                                                                                                                                             discussion
## tool                                                                                                                                                                                                                                         tool
## vastly                                                                                                                                                                                                                                     vastly
## activities                                                                                                                                                                                                                             activities
## cause                                                                                                                                                                                                                                       cause
## cooperation                                                                                                                                                                                                                           cooperation
## greenhouse                                                                                                                                                                                                                             greenhouse
## humanrelated                                                                                                                                                                                                                         humanrelated
## lessen                                                                                                                                                                                                                                     lessen
## national                                                                                                                                                                                                                                 national
## outlined                                                                                                                                                                                                                                 outlined
## reported                                                                                                                                                                                                                                 reported
## signed                                                                                                                                                                                                                                     signed
## surface                                                                                                                                                                                                                                   surface
## alberta                                                                                                                                                                                                                                   alberta
## boreal                                                                                                                                                                                                                                     boreal
## coastline                                                                                                                                                                                                                               coastline
## rugged                                                                                                                                                                                                                                     rugged
## stretching                                                                                                                                                                                                                             stretching
## usa                                                                                                                                                                                                                                           usa
## categories                                                                                                                                                                                                                             categories
## distinct                                                                                                                                                                                                                                 distinct
## divided                                                                                                                                                                                                                                   divided
## divisions                                                                                                                                                                                                                               divisions
## numerous                                                                                                                                                                                                                                 numerous
## phsyiographic                                                                                                                                                                                                                       phsyiographic
## plus                                                                                                                                                                                                                                         plus
## similar                                                                                                                                                                                                                                   similar
## subareas                                                                                                                                                                                                                                 subareas
## useful                                                                                                                                                                                                                                     useful
## variety                                                                                                                                                                                                                                   variety
## aging                                                                                                                                                                                                                                       aging
## births                                                                                                                                                                                                                                     births
## deaths                                                                                                                                                                                                                                     deaths
## decrease                                                                                                                                                                                                                                 decrease
## interprovincial                                                                                                                                                                                                                   interprovincial
## now                                                                                                                                                                                                                                           now
## passed                                                                                                                                                                                                                                     passed
## populace                                                                                                                                                                                                                                 populace
## retire                                                                                                                                                                                                                                     retire
## shows                                                                                                                                                                                                                                       shows
## slightly                                                                                                                                                                                                                                 slightly
## stats                                                                                                                                                                                                                                       stats
## working                                                                                                                                                                                                                                   working
## age                                                                                                                                                                                                                                           age
## comprise                                                                                                                                                                                                                                 comprise
## least                                                                                                                                                                                                                                       least
## okanagan                                                                                                                                                                                                                                 okanagan
## reserves                                                                                                                                                                                                                                 reserves
## urban                                                                                                                                                                                                                                       urban
## younger                                                                                                                                                                                                                                   younger
## cover                                                                                                                                                                                                                                       cover
## culture                                                                                                                                                                                                                                   culture
## drivers                                                                                                                                                                                                                                   drivers
## iii                                                                                                                                                                                                                                           iii
## island                                                                                                                                                                                                                                     island
## kootenay                                                                                                                                                                                                                                 kootenay
## mainland                                                                                                                                                                                                                                 mainland
## nechako                                                                                                                                                                                                                                   nechako
## northeast                                                                                                                                                                                                                               northeast
## occur                                                                                                                                                                                                                                       occur
## occurs                                                                                                                                                                                                                                     occurs
## pipelines                                                                                                                                                                                                                               pipelines
## southwest                                                                                                                                                                                                                               southwest
## thompsonokanagan                                                                                                                                                                                                                 thompsonokanagan
## utilities                                                                                                                                                                                                                               utilities
## vancouver                                                                                                                                                                                                                               vancouver
## decreasing                                                                                                                                                                                                                             decreasing
## domestic                                                                                                                                                                                                                                 domestic
## emitting                                                                                                                                                                                                                                 emitting
## gross                                                                                                                                                                                                                                       gross
## hydro                                                                                                                                                                                                                                       hydro
## manufacturing                                                                                                                                                                                                                       manufacturing
## megatons                                                                                                                                                                                                                                 megatons
## product                                                                                                                                                                                                                                   product
## service                                                                                                                                                                                                                                   service
## acceptance                                                                                                                                                                                                                             acceptance
## access                                                                                                                                                                                                                                     access
## authority                                                                                                                                                                                                                               authority
## citizens                                                                                                                                                                                                                                 citizens
## creek                                                                                                                                                                                                                                       creek
## decisionmaking                                                                                                                                                                                                                     decisionmaking
## exercise                                                                                                                                                                                                                                 exercise
## expected                                                                                                                                                                                                                                 expected
## fairy                                                                                                                                                                                                                                       fairy
## gaslink                                                                                                                                                                                                                                   gaslink
## going                                                                                                                                                                                                                                       going
## landscape                                                                                                                                                                                                                               landscape
## pipeline                                                                                                                                                                                                                                 pipeline
## protest                                                                                                                                                                                                                                   protest
## protocol                                                                                                                                                                                                                                 protocol
## right                                                                                                                                                                                                                                       right
## undrip                                                                                                                                                                                                                                     undrip
## wet’suwet’en                                                                                                                                                                                                                         wet’suwet’en
## collaborating                                                                                                                                                                                                                       collaborating
## crisis”                                                                                                                                                                                                                                   crisis”
## focusing                                                                                                                                                                                                                                 focusing
## followed                                                                                                                                                                                                                                 followed
## formed                                                                                                                                                                                                                                     formed
## furthering                                                                                                                                                                                                                             furthering
## highlighted                                                                                                                                                                                                                           highlighted
## investing                                                                                                                                                                                                                               investing
## money                                                                                                                                                                                                                                       money
## ndp                                                                                                                                                                                                                                           ndp
## prepare                                                                                                                                                                                                                                   prepare
## prevention                                                                                                                                                                                                                             prevention
## resilient                                                                                                                                                                                                                               resilient
## set                                                                                                                                                                                                                                           set
## setting                                                                                                                                                                                                                                   setting
## wildfires                                                                                                                                                                                                                               wildfires
## “climate                                                                                                                                                                                                                                 “climate
## affecting                                                                                                                                                                                                                               affecting
## affirms                                                                                                                                                                                                                                   affirms
## assessment                                                                                                                                                                                                                             assessment
## call                                                                                                                                                                                                                                         call
## consumption                                                                                                                                                                                                                           consumption
## currently                                                                                                                                                                                                                               currently
## drives                                                                                                                                                                                                                                     drives
## exceed                                                                                                                                                                                                                                     exceed
## experts                                                                                                                                                                                                                                   experts
## fall                                                                                                                                                                                                                                         fall
## life                                                                                                                                                                                                                                         life
## likely                                                                                                                                                                                                                                     likely
## newest                                                                                                                                                                                                                                     newest
## reductions”                                                                                                                                                                                                                           reductions”
## responsible                                                                                                                                                                                                                           responsible
## special                                                                                                                                                                                                                                   special
## sustainability                                                                                                                                                                                                                     sustainability
## understanding                                                                                                                                                                                                                       understanding
## unless                                                                                                                                                                                                                                     unless
## update                                                                                                                                                                                                                                     update
## written                                                                                                                                                                                                                                   written
## “deep                                                                                                                                                                                                                                       “deep
## agreed                                                                                                                                                                                                                                     agreed
## binding                                                                                                                                                                                                                                   binding
## detailed                                                                                                                                                                                                                                 detailed
## legally                                                                                                                                                                                                                                   legally
## motivated                                                                                                                                                                                                                               motivated
## preferably                                                                                                                                                                                                                             preferably
## ratified                                                                                                                                                                                                                                 ratified
## sovereign                                                                                                                                                                                                                               sovereign
## submit                                                                                                                                                                                                                                     submit
## treaty                                                                                                                                                                                                                                     treaty
## available                                                                                                                                                                                                                               available
## aware                                                                                                                                                                                                                                       aware
## best                                                                                                                                                                                                                                         best
## diversifying                                                                                                                                                                                                                         diversifying
## economies                                                                                                                                                                                                                               economies
## efforts                                                                                                                                                                                                                                   efforts
## enacting                                                                                                                                                                                                                                 enacting
## evaluating                                                                                                                                                                                                                             evaluating
## financing                                                                                                                                                                                                                               financing
## guided                                                                                                                                                                                                                                     guided
## knowledge“                                                                                                                                                                                                                             knowledge“
## mobilizing                                                                                                                                                                                                                             mobilizing
## planning                                                                                                                                                                                                                                 planning
## programs                                                                                                                                                                                                                                 programs
## responses                                                                                                                                                                                                                               responses
## transparent                                                                                                                                                                                                                           transparent
## unfcc                                                                                                                                                                                                                                       unfcc
## vision“                                                                                                                                                                                                                                   vision“
## “                                                                                                                                                                                                                                               “
## “longterm                                                                                                                                                                                                                               “longterm
## cutting                                                                                                                                                                                                                                   cutting
## enhanced                                                                                                                                                                                                                                 enhanced
## families                                                                                                                                                                                                                                 families
## habitats                                                                                                                                                                                                                                 habitats
## household                                                                                                                                                                                                                               household
## innovating                                                                                                                                                                                                                             innovating
## original                                                                                                                                                                                                                                 original
## outlining                                                                                                                                                                                                                               outlining
## rebates                                                                                                                                                                                                                                   rebates
## respecting                                                                                                                                                                                                                             respecting
## submitted                                                                                                                                                                                                                               submitted
## bioeconomy                                                                                                                                                                                                                             bioeconomy
## climatechange                                                                                                                                                                                                                       climatechange
## collecting                                                                                                                                                                                                                             collecting
## cultivated                                                                                                                                                                                                                             cultivated
## data                                                                                                                                                                                                                                         data
## extend                                                                                                                                                                                                                                     extend
## fisheries                                                                                                                                                                                                                               fisheries
## globally                                                                                                                                                                                                                                 globally
## map                                                                                                                                                                                                                                           map
## preparedness                                                                                                                                                                                                                         preparedness
## purposes                                                                                                                                                                                                                                 purposes
## ready                                                                                                                                                                                                                                       ready
## released                                                                                                                                                                                                                                 released
## road                                                                                                                                                                                                                                         road
## targeted                                                                                                                                                                                                                                 targeted
## accelerator                                                                                                                                                                                                                           accelerator
## allow                                                                                                                                                                                                                                       allow
## capped                                                                                                                                                                                                                                     capped
## cumulatively                                                                                                                                                                                                                         cumulatively
## offered                                                                                                                                                                                                                                   offered
## proposals                                                                                                                                                                                                                               proposals
## reviewed                                                                                                                                                                                                                                 reviewed
## america                                                                                                                                                                                                                                   america
## applied                                                                                                                                                                                                                                   applied
## canadians                                                                                                                                                                                                                               canadians
## credit                                                                                                                                                                                                                                     credit
## fueltype                                                                                                                                                                                                                                 fueltype
## kind                                                                                                                                                                                                                                         kind
## metric                                                                                                                                                                                                                                     metric
## middleincome                                                                                                                                                                                                                         middleincome
## purchase                                                                                                                                                                                                                                 purchase
## rebated                                                                                                                                                                                                                                   rebated
## solution                                                                                                                                                                                                                                 solution
## starting                                                                                                                                                                                                                                 starting
## taxes                                                                                                                                                                                                                                       taxes
## ton                                                                                                                                                                                                                                           ton
## charging                                                                                                                                                                                                                                 charging
## deferring                                                                                                                                                                                                                               deferring
## electrifying                                                                                                                                                                                                                         electrifying
## expanding                                                                                                                                                                                                                               expanding
## installations                                                                                                                                                                                                                       installations
## passenger                                                                                                                                                                                                                               passenger
## previously                                                                                                                                                                                                                             previously
## promises                                                                                                                                                                                                                                 promises
## promoting                                                                                                                                                                                                                               promoting
## pump                                                                                                                                                                                                                                         pump
## subsidizing                                                                                                                                                                                                                           subsidizing
## vehicles                                                                                                                                                                                                                                 vehicles
## world                                                                                                                                                                                                                                       world
## zeroemission                                                                                                                                                                                                                         zeroemission
## competitively                                                                                                                                                                                                                       competitively
## final                                                                                                                                                                                                                                       final
## leader                                                                                                                                                                                                                                     leader
## move                                                                                                                                                                                                                                         move
## sections                                                                                                                                                                                                                                 sections
## rest                                                                                                                                                                                                                                         rest
## “inform                                                                                                                                                                                                                                   “inform
## ”                                                                                                                                                                                                                                               ”
## analyzing                                                                                                                                                                                                                               analyzing
## impacted                                                                                                                                                                                                                                 impacted
## inform                                                                                                                                                                                                                                     inform
## understand                                                                                                                                                                                                                             understand
## barometric                                                                                                                                                                                                                             barometric
## common                                                                                                                                                                                                                                     common
## difference                                                                                                                                                                                                                             difference
## distinguishing                                                                                                                                                                                                                     distinguishing
## hourly                                                                                                                                                                                                                                     hourly
## influences                                                                                                                                                                                                                             influences
## recognize                                                                                                                                                                                                                               recognize
## seasonally                                                                                                                                                                                                                             seasonally
## speed                                                                                                                                                                                                                                       speed
## start                                                                                                                                                                                                                                       start
## statistical                                                                                                                                                                                                                           statistical
## variabilities                                                                                                                                                                                                                       variabilities
## vary                                                                                                                                                                                                                                         vary
## alternating                                                                                                                                                                                                                           alternating
## canada‘s                                                                                                                                                                                                                                 canada‘s
## climatic                                                                                                                                                                                                                                 climatic
## frostfree                                                                                                                                                                                                                               frostfree
## lots                                                                                                                                                                                                                                         lots
## lowpressure                                                                                                                                                                                                                           lowpressure
## moderating                                                                                                                                                                                                                             moderating
## multiyear                                                                                                                                                                                                                               multiyear
## periods                                                                                                                                                                                                                                   periods
## prevailing                                                                                                                                                                                                                             prevailing
## rainfall                                                                                                                                                                                                                                 rainfall
## seasonal                                                                                                                                                                                                                                 seasonal
## warmest                                                                                                                                                                                                                                   warmest
## west                                                                                                                                                                                                                                         west
## winds                                                                                                                                                                                                                                       winds
## basins                                                                                                                                                                                                                                     basins
## block                                                                                                                                                                                                                                       block
## columbia                                                                                                                                                                                                                                 columbia
## coming                                                                                                                                                                                                                                     coming
## distance                                                                                                                                                                                                                                 distance
## distribute                                                                                                                                                                                                                             distribute
## eastern                                                                                                                                                                                                                                   eastern
## elevation                                                                                                                                                                                                                               elevation
## exposure                                                                                                                                                                                                                                 exposure
## gradient                                                                                                                                                                                                                                 gradient
## great                                                                                                                                                                                                                                       great
## islands                                                                                                                                                                                                                                   islands
## marine                                                                                                                                                                                                                                     marine
## masses                                                                                                                                                                                                                                     masses
## mild                                                                                                                                                                                                                                         mild
## northsouth                                                                                                                                                                                                                             northsouth
## parallel                                                                                                                                                                                                                                 parallel
## prairies                                                                                                                                                                                                                                 prairies
## separated                                                                                                                                                                                                                               separated
## afternoons                                                                                                                                                                                                                             afternoons
## brings                                                                                                                                                                                                                                     brings
## driest                                                                                                                                                                                                                                     driest
## dryer                                                                                                                                                                                                                                       dryer
## elevations                                                                                                                                                                                                                             elevations
## experiences                                                                                                                                                                                                                           experiences
## generating                                                                                                                                                                                                                             generating
## higher                                                                                                                                                                                                                                     higher
## rainshadow                                                                                                                                                                                                                             rainshadow
## range                                                                                                                                                                                                                                       range
## side                                                                                                                                                                                                                                         side
## slopes                                                                                                                                                                                                                                     slopes
## southcentral                                                                                                                                                                                                                         southcentral
## spring                                                                                                                                                                                                                                     spring
## thunderstorm                                                                                                                                                                                                                         thunderstorm
## valleybottoms                                                                                                                                                                                                                       valleybottoms
## valleys                                                                                                                                                                                                                                   valleys
## westerly                                                                                                                                                                                                                                 westerly
## wet                                                                                                                                                                                                                                           wet
## days                                                                                                                                                                                                                                         days
## declared                                                                                                                                                                                                                                 declared
## dramatic                                                                                                                                                                                                                                 dramatic
## history                                                                                                                                                                                                                                   history
## lives                                                                                                                                                                                                                                       lives
## longest                                                                                                                                                                                                                                   longest
## recordbreaking                                                                                                                                                                                                                     recordbreaking
## waves                                                                                                                                                                                                                                       waves
## wild                                                                                                                                                                                                                                         wild
## worst                                                                                                                                                                                                                                       worst
## floods                                                                                                                                                                                                                                     floods
## george                                                                                                                                                                                                                                     george
## harbour                                                                                                                                                                                                                                   harbour
## hot                                                                                                                                                                                                                                           hot
## june                                                                                                                                                                                                                                         june
## lytton                                                                                                                                                                                                                                     lytton
## prince                                                                                                                                                                                                                                     prince
## third                                                                                                                                                                                                                                       third
## victoria                                                                                                                                                                                                                                 victoria
## anything                                                                                                                                                                                                                                 anything
## etal                                                                                                                                                                                                                                         etal
## glaciers                                                                                                                                                                                                                                 glaciers
## mention                                                                                                                                                                                                                                   mention
## moisture                                                                                                                                                                                                                                 moisture
## page                                                                                                                                                                                                                                         page
## spittlehouse                                                                                                                                                                                                                         spittlehouse
## normals                                                                                                                                                                                                                                   normals
## compared                                                                                                                                                                                                                                 compared
## norm                                                                                                                                                                                                                                         norm
## year                                                                                                                                                                                                                                         year
## max                                                                                                                                                                                                                                           max
## min                                                                                                                                                                                                                                           min
## norms                                                                                                                                                                                                                                       norms
## precip                                                                                                                                                                                                                                     precip
## temp                                                                                                                                                                                                                                         temp
## differ                                                                                                                                                                                                                                     differ
## mean                                                                                                                                                                                                                                         mean
## planetary                                                                                                                                                                                                                               planetary
## leading                                                                                                                                                                                                                                   leading
## jurisdiction                                                                                                                                                                                                                         jurisdiction
## actuaries                                                                                                                                                                                                                               actuaries
## index                                                                                                                                                                                                                                       index
## asterix                                                                                                                                                                                                                                   asterix
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                                                                         httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                                                                                               httpsdatapacificclimateorgportaldownscaledgcmsmap
## strength                                                                                                                                                                                                                                 strength
## forecast                                                                                                                                                                                                                                 forecast
## modeled                                                                                                                                                                                                                                   modeled
## prediction                                                                                                                                                                                                                             prediction
## projection                                                                                                                                                                                                                             projection
## see                                                                                                                                                                                                                                           see
## httpstwittercomthomasforbcstatuss                                                                                                                                                                               httpstwittercomthomasforbcstatuss
## amount                                                                                                                                                                                                                                     amount
## drying                                                                                                                                                                                                                                     drying
## melt                                                                                                                                                                                                                                         melt
## persistence                                                                                                                                                                                                                           persistence
## snowpack                                                                                                                                                                                                                                 snowpack
## get                                                                                                                                                                                                                                           get
## hotter                                                                                                                                                                                                                                     hotter
## summers                                                                                                                                                                                                                                   summers
## trend                                                                                                                                                                                                                                       trend
## months                                                                                                                                                                                                                                     months
## decadal                                                                                                                                                                                                                                   decadal
## american                                                                                                                                                                                                                                 american
## lifetime                                                                                                                                                                                                                                 lifetime
## pattern                                                                                                                                                                                                                                   pattern
## amplified                                                                                                                                                                                                                               amplified
## coincided                                                                                                                                                                                                                               coincided
## cycles                                                                                                                                                                                                                                     cycles
## series                                                                                                                                                                                                                                     series
## imbalance                                                                                                                                                                                                                               imbalance
## increases                                                                                                                                                                                                                               increases
## keeping                                                                                                                                                                                                                                   keeping
## relative                                                                                                                                                                                                                                 relative
## transfer                                                                                                                                                                                                                                 transfer
## •                                                                                                                                                                                                                                               •
## affects                                                                                                                                                                                                                                   affects
## heating                                                                                                                                                                                                                                   heating
## slowly                                                                                                                                                                                                                                     slowly
## cumulative                                                                                                                                                                                                                             cumulative
## deforestation                                                                                                                                                                                                                       deforestation
## esp                                                                                                                                                                                                                                           esp
## march                                                                                                                                                                                                                                       march
## nitrous                                                                                                                                                                                                                                   nitrous
## oxide                                                                                                                                                                                                                                       oxide
## httpsbritishcolumbiacombcweatherbc                                                                                                                                                                             httpsbritishcolumbiacombcweatherbc
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                                                                                 httpspicsuviccaresearchclimatehealthcovidbritishcolumbia
## httpsopentextbccageographychapterclimateenvironmentbc                                                                                                                                       httpsopentextbccageographychapterclimateenvironmentbc
## httpsclimatechangecanadacabritishcolumbia                                                                                                                                                               httpsclimatechangecanadacabritishcolumbia
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                                                           httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia
## guiding                                                                                                                                                                                                                                   guiding
## makers                                                                                                                                                                                                                                     makers
## presented                                                                                                                                                                                                                               presented
## scientists                                                                                                                                                                                                                             scientists
## considers                                                                                                                                                                                                                               considers
## bc’                                                                                                                                                                                                                                           bc’
## depends                                                                                                                                                                                                                                   depends
## grasslands                                                                                                                                                                                                                             grasslands
## healthier                                                                                                                                                                                                                               healthier
## matter                                                                                                                                                                                                                                     matter
## nature                                                                                                                                                                                                                                     nature
## particulate                                                                                                                                                                                                                           particulate
## retention                                                                                                                                                                                                                               retention
## shrubs                                                                                                                                                                                                                                     shrubs
## stored                                                                                                                                                                                                                                     stored
## zone                                                                                                                                                                                                                                         zone
## ‘beautiful                                                                                                                                                                                                                             ‘beautiful
## accessible                                                                                                                                                                                                                             accessible
## distributed                                                                                                                                                                                                                           distributed
## excluded                                                                                                                                                                                                                                 excluded
## inclusive                                                                                                                                                                                                                               inclusive
## inequality                                                                                                                                                                                                                             inequality
## multiple                                                                                                                                                                                                                                 multiple
## reductions                                                                                                                                                                                                                             reductions
## spreading                                                                                                                                                                                                                               spreading
## thus                                                                                                                                                                                                                                         thus
## consultation                                                                                                                                                                                                                         consultation
## diesel                                                                                                                                                                                                                                     diesel
## generators                                                                                                                                                                                                                             generators
## relations                                                                                                                                                                                                                               relations
## reliance                                                                                                                                                                                                                                 reliance
## develop                                                                                                                                                                                                                                   develop
## environments                                                                                                                                                                                                                         environments
## explore                                                                                                                                                                                                                                   explore
## inspired                                                                                                                                                                                                                                 inspired
## lowemission                                                                                                                                                                                                                           lowemission
## researchers                                                                                                                                                                                                                           researchers
## revitalized                                                                                                                                                                                                                           revitalized
## skilled                                                                                                                                                                                                                                   skilled
## smooth                                                                                                                                                                                                                                     smooth
## student                                                                                                                                                                                                                                   student
## chance                                                                                                                                                                                                                                     chance
## cycling                                                                                                                                                                                                                                   cycling
## diversification                                                                                                                                                                                                                   diversification
## managed                                                                                                                                                                                                                                   managed
## newly                                                                                                                                                                                                                                       newly
## nutrient                                                                                                                                                                                                                                 nutrient
## preservation                                                                                                                                                                                                                         preservation
## purification                                                                                                                                                                                                                         purification
## recreation                                                                                                                                                                                                                             recreation
## rethink                                                                                                                                                                                                                                   rethink
## spirituality                                                                                                                                                                                                                         spirituality
## stewardship                                                                                                                                                                                                                           stewardship
## tissue                                                                                                                                                                                                                                     tissue
## wildlife                                                                                                                                                                                                                                 wildlife
## woody                                                                                                                                                                                                                                       woody
## abound                                                                                                                                                                                                                                     abound
## contribution                                                                                                                                                                                                                         contribution
## ensures                                                                                                                                                                                                                                   ensures
## farming                                                                                                                                                                                                                                   farming
## importing                                                                                                                                                                                                                               importing
## preserving                                                                                                                                                                                                                             preserving
## ranching                                                                                                                                                                                                                                 ranching
## rebuilt                                                                                                                                                                                                                                   rebuilt
## recently                                                                                                                                                                                                                                 recently
## reduces                                                                                                                                                                                                                                   reduces
## reserve                                                                                                                                                                                                                                   reserve
## destructive                                                                                                                                                                                                                           destructive
## environmentally                                                                                                                                                                                                                   environmentally
## preparing                                                                                                                                                                                                                               preparing
## reconstruct                                                                                                                                                                                                                           reconstruct
## thrive                                                                                                                                                                                                                                     thrive
## zoning                                                                                                                                                                                                                                     zoning
## cite                                                                                                                                                                                                                                         cite
## cleaning                                                                                                                                                                                                                                 cleaning
## covid                                                                                                                                                                                                                                       covid
## greatly                                                                                                                                                                                                                                   greatly
## lockdown                                                                                                                                                                                                                                 lockdown
## looking                                                                                                                                                                                                                                   looking
## markets                                                                                                                                                                                                                                   markets
## pays                                                                                                                                                                                                                                         pays
## polluter                                                                                                                                                                                                                                 polluter
## principle                                                                                                                                                                                                                               principle
## providing                                                                                                                                                                                                                               providing
## reassessing                                                                                                                                                                                                                           reassessing
## reevaluate                                                                                                                                                                                                                             reevaluate
## something                                                                                                                                                                                                                               something
## try                                                                                                                                                                                                                                           try
## interests                                                                                                                                                                                                                               interests
## involves                                                                                                                                                                                                                                 involves
## myriad                                                                                                                                                                                                                                     myriad
## detractors                                                                                                                                                                                                                             detractors
## measure                                                                                                                                                                                                                                   measure
## supporters                                                                                                                                                                                                                             supporters
## highlight                                                                                                                                                                                                                               highlight
## might                                                                                                                                                                                                                                       might
## mitigated                                                                                                                                                                                                                               mitigated
## overcome                                                                                                                                                                                                                                 overcome
## ided                                                                                                                                                                                                                                         ided
## discuss                                                                                                                                                                                                                                   discuss
## displaced                                                                                                                                                                                                                               displaced
## communicate                                                                                                                                                                                                                           communicate
## inspire                                                                                                                                                                                                                                   inspire
## accepting                                                                                                                                                                                                                               accepting
## comes                                                                                                                                                                                                                                       comes
## continuing                                                                                                                                                                                                                             continuing
## directions                                                                                                                                                                                                                             directions
## emit                                                                                                                                                                                                                                         emit
## expensive                                                                                                                                                                                                                               expensive
## inherent                                                                                                                                                                                                                                 inherent
## paths                                                                                                                                                                                                                                       paths
## problem                                                                                                                                                                                                                                   problem
## relying                                                                                                                                                                                                                                   relying
## researching                                                                                                                                                                                                                           researching
## simply                                                                                                                                                                                                                                     simply
## source                                                                                                                                                                                                                                     source
## suggest                                                                                                                                                                                                                                   suggest
## timelines                                                                                                                                                                                                                               timelines
## unproven                                                                                                                                                                                                                                 unproven
## concerns                                                                                                                                                                                                                                 concerns
## give                                                                                                                                                                                                                                         give
## legitimate                                                                                                                                                                                                                             legitimate
## oceans”                                                                                                                                                                                                                                   oceans”
## places                                                                                                                                                                                                                                     places
## protect                                                                                                                                                                                                                                   protect
## raised                                                                                                                                                                                                                                     raised
## shellfish                                                                                                                                                                                                                               shellfish
## shells                                                                                                                                                                                                                                     shells
## shortterm                                                                                                                                                                                                                               shortterm
## “irreversible                                                                                                                                                                                                                       “irreversible
## advisory                                                                                                                                                                                                                                 advisory
## advocating                                                                                                                                                                                                                             advocating
## businesses                                                                                                                                                                                                                             businesses
## consumers                                                                                                                                                                                                                               consumers
## disabled                                                                                                                                                                                                                                 disabled
## individual                                                                                                                                                                                                                             individual
## member                                                                                                                                                                                                                                     member
## missing                                                                                                                                                                                                                                   missing
## organizations                                                                                                                                                                                                                       organizations
## poverty                                                                                                                                                                                                                                   poverty
## seeking                                                                                                                                                                                                                                   seeking
## accepted                                                                                                                                                                                                                                 accepted
## declaration                                                                                                                                                                                                                           declaration
## departments                                                                                                                                                                                                                           departments
## drip                                                                                                                                                                                                                                         drip
## engagement                                                                                                                                                                                                                             engagement
## forms                                                                                                                                                                                                                                       forms
## governance                                                                                                                                                                                                                             governance
## hereditary                                                                                                                                                                                                                             hereditary
## indian                                                                                                                                                                                                                                     indian
## lands                                                                                                                                                                                                                                       lands
## peoples                                                                                                                                                                                                                                   peoples
## personnel                                                                                                                                                                                                                               personnel
## protocols                                                                                                                                                                                                                               protocols
## reservation                                                                                                                                                                                                                           reservation
## situated                                                                                                                                                                                                                                 situated
## territorial                                                                                                                                                                                                                           territorial
## treaties                                                                                                                                                                                                                                 treaties
## decline                                                                                                                                                                                                                                   decline
## except                                                                                                                                                                                                                                     except
## expansion                                                                                                                                                                                                                               expansion
## general                                                                                                                                                                                                                                   general
## greenenergy                                                                                                                                                                                                                           greenenergy
## retirements                                                                                                                                                                                                                           retirements
## socioeconomic                                                                                                                                                                                                                       socioeconomic
## absorption                                                                                                                                                                                                                             absorption
## ecoservices                                                                                                                                                                                                                           ecoservices
## insect                                                                                                                                                                                                                                     insect
## pause                                                                                                                                                                                                                                       pause
## stressed                                                                                                                                                                                                                                 stressed
## system                                                                                                                                                                                                                                     system
## techniques                                                                                                                                                                                                                             techniques
## uncertainty                                                                                                                                                                                                                           uncertainty
## unsustainable                                                                                                                                                                                                                       unsustainable
## addressed                                                                                                                                                                                                                               addressed
## alternate                                                                                                                                                                                                                               alternate
## became                                                                                                                                                                                                                                     became
## grown                                                                                                                                                                                                                                       grown
## locally                                                                                                                                                                                                                                   locally
## prone                                                                                                                                                                                                                                       prone
## remain                                                                                                                                                                                                                                     remain
## toxins                                                                                                                                                                                                                                     toxins
## adaption                                                                                                                                                                                                                                 adaption
## anew                                                                                                                                                                                                                                         anew
## considered                                                                                                                                                                                                                             considered
## expense                                                                                                                                                                                                                                   expense
## farm                                                                                                                                                                                                                                         farm
## income                                                                                                                                                                                                                                     income
## infrastructure”                                                                                                                                                                                                                   infrastructure”
## lost                                                                                                                                                                                                                                         lost
## policies”                                                                                                                                                                                                                               policies”
## require                                                                                                                                                                                                                                   require
## results                                                                                                                                                                                                                                   results
## “ambitious                                                                                                                                                                                                                             “ambitious
## “systemic                                                                                                                                                                                                                               “systemic
## comparisons                                                                                                                                                                                                                           comparisons
## previous                                                                                                                                                                                                                                 previous
## conclusions                                                                                                                                                                                                                           conclusions
## summaryconclude                                                                                                                                                                                                                   summaryconclude
## parts                                                                                                                                                                                                                                       parts
## open                                                                                                                                                                                                                                         open
## paragraph                                                                                                                                                                                                                               paragraph
## parti                                                                                                                                                                                                                                       parti
## along                                                                                                                                                                                                                                       along
## demographic                                                                                                                                                                                                                           demographic
## varying                                                                                                                                                                                                                                   varying
## actor                                                                                                                                                                                                                                       actor
## pick                                                                                                                                                                                                                                         pick
## fulfillment                                                                                                                                                                                                                           fulfillment
## identification                                                                                                                                                                                                                     identification
## issue                                                                                                                                                                                                                                       issue
## suggested                                                                                                                                                                                                                               suggested
## actionoriented                                                                                                                                                                                                                     actionoriented
## inclusion                                                                                                                                                                                                                               inclusion
## practical                                                                                                                                                                                                                               practical
## rationales                                                                                                                                                                                                                             rationales
## term                                                                                                                                                                                                                                         term
## think                                                                                                                                                                                                                                       think
## underway                                                                                                                                                                                                                                 underway
## factor                                                                                                                                                                                                                                     factor
## consideration                                                                                                                                                                                                                       consideration
## number                                                                                                                                                                                                                                     number
## order                                                                                                                                                                                                                                       order
## posed                                                                                                                                                                                                                                       posed
## strategic                                                                                                                                                                                                                               strategic
## avoid                                                                                                                                                                                                                                       avoid
## linealigned                                                                                                                                                                                                                           linealigned
## sake                                                                                                                                                                                                                                         sake
## sure                                                                                                                                                                                                                                         sure
## thought                                                                                                                                                                                                                                   thought
## wise                                                                                                                                                                                                                                         wise
## appropriate                                                                                                                                                                                                                           appropriate
## estate                                                                                                                                                                                                                                     estate
## extraction                                                                                                                                                                                                                             extraction
## real                                                                                                                                                                                                                                         real
## restore                                                                                                                                                                                                                                   restore
## valuable                                                                                                                                                                                                                                 valuable
## assure                                                                                                                                                                                                                                     assure
## fair                                                                                                                                                                                                                                         fair
## finance                                                                                                                                                                                                                                   finance
## industrial                                                                                                                                                                                                                             industrial
## just                                                                                                                                                                                                                                         just
## supportive                                                                                                                                                                                                                             supportive
## green                                                                                                                                                                                                                                       green
## process                                                                                                                                                                                                                                   process
## relationships                                                                                                                                                                                                                       relationships
## together                                                                                                                                                                                                                                 together
## carbonfree                                                                                                                                                                                                                             carbonfree
## design                                                                                                                                                                                                                                     design
## engineer                                                                                                                                                                                                                                 engineer
## innovate                                                                                                                                                                                                                                 innovate
## maintain                                                                                                                                                                                                                                 maintain
## produce                                                                                                                                                                                                                                   produce
## train                                                                                                                                                                                                                                       train
## transitioning                                                                                                                                                                                                                       transitioning
## young                                                                                                                                                                                                                                       young
## capture                                                                                                                                                                                                                                   capture
## deciduous                                                                                                                                                                                                                               deciduous
## diverse                                                                                                                                                                                                                                   diverse
## effectively                                                                                                                                                                                                                           effectively
## firebreak                                                                                                                                                                                                                               firebreak
## functions                                                                                                                                                                                                                               functions
## mills                                                                                                                                                                                                                                       mills
## refit                                                                                                                                                                                                                                       refit
## smaller                                                                                                                                                                                                                                   smaller
## tree                                                                                                                                                                                                                                         tree
## compliance                                                                                                                                                                                                                             compliance
## continuation                                                                                                                                                                                                                         continuation
## enforcement                                                                                                                                                                                                                           enforcement
## equipment                                                                                                                                                                                                                               equipment
## gaspowered                                                                                                                                                                                                                             gaspowered
## innovations                                                                                                                                                                                                                           innovations
## replace                                                                                                                                                                                                                                   replace
## demolishing                                                                                                                                                                                                                           demolishing
## don’t                                                                                                                                                                                                                                       don’t
## fireresiliency                                                                                                                                                                                                                     fireresiliency
## focus                                                                                                                                                                                                                                       focus
## restoring                                                                                                                                                                                                                               restoring
## risk                                                                                                                                                                                                                                         risk
## safe                                                                                                                                                                                                                                         safe
## structures                                                                                                                                                                                                                             structures
## updating                                                                                                                                                                                                                                 updating
## exhaustive                                                                                                                                                                                                                             exhaustive
## ‘lens’                                                                                                                                                                                                                                     ‘lens’
## sense                                                                                                                                                                                                                                       sense
## urgency                                                                                                                                                                                                                                   urgency
## ultimate                                                                                                                                                                                                                                 ultimate
## initiating                                                                                                                                                                                                                             initiating
## lead                                                                                                                                                                                                                                         lead
## market                                                                                                                                                                                                                                     market
## initial                                                                                                                                                                                                                                   initial
## outline                                                                                                                                                                                                                                   outline
## refer                                                                                                                                                                                                                                       refer
## difference’                                                                                                                                                                                                                           difference’
## know                                                                                                                                                                                                                                         know
## recognizing                                                                                                                                                                                                                           recognizing
## ‘make                                                                                                                                                                                                                                       ‘make
## honour                                                                                                                                                                                                                                     honour
## reason                                                                                                                                                                                                                                     reason
## reports                                                                                                                                                                                                                                   reports
## taking                                                                                                                                                                                                                                     taking
## british                                                                                                                                                                                                                                   british
## business                                                                                                                                                                                                                                 business
## columbians                                                                                                                                                                                                                             columbians
## ensured                                                                                                                                                                                                                                   ensured
## stewarding                                                                                                                                                                                                                             stewarding
## unique                                                                                                                                                                                                                                     unique
## vibrant                                                                                                                                                                                                                                   vibrant
##                                                                                                                          freq
## climate                                                                                                                    67
## emissions                                                                                                                  41
## bc’s                                                                                                                       25
## will                                                                                                                       23
## change                                                                                                                     22
## reduce                                                                                                                     21
## carbon                                                                                                                     17
## help                                                                                                                       17
## regions                                                                                                                    16
## ghg                                                                                                                        16
## action                                                                                                                     15
## future                                                                                                                     15
## indigenous                                                                                                                 15
## challenges                                                                                                                 15
## weather                                                                                                                    15
## temperature                                                                                                                14
## also                                                                                                                       14
## industry                                                                                                                   14
## opportunity                                                                                                                14
## changing                                                                                                                   13
## social                                                                                                                     13
## economic                                                                                                                   13
## building                                                                                                                   13
## opportunities                                                                                                              13
## recommendations                                                                                                            12
## new                                                                                                                        12
## mitigation                                                                                                                 12
## gas                                                                                                                        11
## including                                                                                                                  11
## paris                                                                                                                      11
## provincial                                                                                                                 11
## canada’s                                                                                                                   11
## land                                                                                                                       11
## development                                                                                                                11
## energy                                                                                                                     11
## reducing                                                                                                                   11
## words                                                                                                                      11
## –                                                                                                                          11
## can                                                                                                                        10
## strategies                                                                                                                 10
## global                                                                                                                     10
## increased                                                                                                                  10
## agriculture                                                                                                                10
## natural                                                                                                                    10
## need                                                                                                                       10
## skills                                                                                                                     10
## recommendation                                                                                                             10
## food                                                                                                                       10
## supporting                                                                                                                 10
## changes                                                                                                                    10
## challenge                                                                                                                  10
## forests                                                                                                                     9
## communities                                                                                                                 9
## adaptation                                                                                                                  9
## clean                                                                                                                       9
## technology                                                                                                                  9
## benefits                                                                                                                    9
## provide                                                                                                                     9
## events                                                                                                                      9
## different                                                                                                                   8
## people                                                                                                                      8
## political                                                                                                                   8
## ipcc                                                                                                                        8
## growth                                                                                                                      8
## region                                                                                                                      8
## interior                                                                                                                    8
## buildings                                                                                                                   8
## oil                                                                                                                         8
## transportation                                                                                                              8
## protecting                                                                                                                  8
## training                                                                                                                    8
## agreement                                                                                                                   8
## integrity                                                                                                                   8
## well                                                                                                                        8
## section                                                                                                                     8
## extreme                                                                                                                     8
## air                                                                                                                         8
## environmental                                                                                                               8
## needs                                                                                                                       8
## support                                                                                                                     7
## ocean                                                                                                                       7
## biodiversity                                                                                                                7
## include                                                                                                                     7
## increasing                                                                                                                  7
## first                                                                                                                       7
## urgent                                                                                                                      7
## commitments                                                                                                                 7
## capacity                                                                                                                    7
## security                                                                                                                    7
## ecological                                                                                                                  7
## lowcarbon                                                                                                                   7
## atmospheric                                                                                                                 7
## services                                                                                                                    7
## analysis                                                                                                                    6
## report                                                                                                                      6
## cleanbc                                                                                                                     6
## ndc                                                                                                                         6
## mountains                                                                                                                   6
## regional                                                                                                                    6
## groups                                                                                                                      6
## north                                                                                                                       6
## potential                                                                                                                   6
## coastal                                                                                                                     6
## adapt                                                                                                                       6
## commitment                                                                                                                  6
## past                                                                                                                        6
## since                                                                                                                       6
## climates                                                                                                                    6
## find                                                                                                                        6
## levels                                                                                                                      6
## °c                                                                                                                          6
## temperatures                                                                                                                6
## years                                                                                                                       6
## ensuring                                                                                                                    6
## equity                                                                                                                      6
## precipitation                                                                                                               6
## summary                                                                                                                     6
## systems                                                                                                                     6
## century                                                                                                                     6
## incorporate                                                                                                                 6
## solutions                                                                                                                   6
## water                                                                                                                       6
## ensure                                                                                                                      6
## important                                                                                                                   5
## accord                                                                                                                      5
## address                                                                                                                     5
## canada                                                                                                                      5
## impacts                                                                                                                     5
## international                                                                                                               5
## warming                                                                                                                     5
## pacific                                                                                                                     5
## province                                                                                                                    5
## south                                                                                                                       5
## health                                                                                                                      5
## population                                                                                                                  5
## result                                                                                                                      5
## though                                                                                                                      5
## within                                                                                                                      5
## forestry                                                                                                                    5
## key                                                                                                                         5
## sectors                                                                                                                     5
## actions                                                                                                                     5
## continue                                                                                                                    5
## local                                                                                                                       5
## based                                                                                                                       5
## flooding                                                                                                                    5
## canadian                                                                                                                    5
## goals                                                                                                                       5
## time                                                                                                                        5
## jobs                                                                                                                        5
## economy                                                                                                                     5
## forest                                                                                                                      5
## fulfill                                                                                                                     5
## reduction                                                                                                                   5
## innovative                                                                                                                  5
## mitigate                                                                                                                    5
## policy                                                                                                                      5
## trees                                                                                                                       5
## become                                                                                                                      5
## work                                                                                                                        5
## make                                                                                                                        5
## communication                                                                                                               5
## copied                                                                                                                      5
## edited                                                                                                                      5
## managing                                                                                                                    5
## still                                                                                                                       5
## part                                                                                                                        4
## contribute                                                                                                                  4
## live                                                                                                                        4
## respond                                                                                                                     4
## accelerated                                                                                                                 4
## plan                                                                                                                        4
## area                                                                                                                        4
## mountain                                                                                                                    4
## northern                                                                                                                    4
## total                                                                                                                       4
## creating                                                                                                                    4
## districts                                                                                                                   4
## high                                                                                                                        4
## use                                                                                                                         4
## increase                                                                                                                    4
## less                                                                                                                        4
## may                                                                                                                         4
## projected                                                                                                                   4
## workers                                                                                                                     4
## central                                                                                                                     4
## experienced                                                                                                                 4
## coast                                                                                                                       4
## gdp                                                                                                                         4
## government                                                                                                                  4
## recent                                                                                                                      4
## financial                                                                                                                   4
## recovery                                                                                                                    4
## wildfire                                                                                                                    4
## balance                                                                                                                     4
## healthy                                                                                                                     4
## rise                                                                                                                        4
## effects                                                                                                                     4
## knowledge                                                                                                                   4
## resilience                                                                                                                  4
## traditional                                                                                                                 4
## competitive                                                                                                                 4
## emission                                                                                                                    4
## encourage                                                                                                                   4
## fuel                                                                                                                        4
## tax                                                                                                                         4
## costs                                                                                                                       4
## sector                                                                                                                      4
## workforce                                                                                                                   4
## becoming                                                                                                                    4
## patterns                                                                                                                    4
## period                                                                                                                      4
## summer                                                                                                                      4
## winter                                                                                                                      4
## cold                                                                                                                        4
## warm                                                                                                                        4
## wetter                                                                                                                      4
## fires                                                                                                                       4
## observed                                                                                                                    4
## look                                                                                                                        4
## lecture                                                                                                                     4
##                                                                                                                            4
## methane                                                                                                                     4
## offer                                                                                                                       4
## build                                                                                                                       4
## rebuilding                                                                                                                  4
## way                                                                                                                         4
## intro                                                                                                                       4
## background                                                                                                                  3
## developing                                                                                                                  3
## geographic                                                                                                                  3
## includes                                                                                                                    3
## industries                                                                                                                  3
## information                                                                                                                 3
## used                                                                                                                        3
## created                                                                                                                     3
## dioxide                                                                                                                     3
## earth’s                                                                                                                     3
## issues                                                                                                                      3
## obligations                                                                                                                 3
## roadmap                                                                                                                     3
## crown                                                                                                                       3
## east                                                                                                                        3
## hectares                                                                                                                    3
## million                                                                                                                     3
## ranges                                                                                                                      3
## western                                                                                                                     3
## biogeoclimatic                                                                                                              3
## manage                                                                                                                      3
## vegetation                                                                                                                  3
## demographics                                                                                                                3
## areas                                                                                                                       3
## territories                                                                                                                 3
## dry                                                                                                                         3
## geography                                                                                                                   3
## construction                                                                                                                3
## logging                                                                                                                     3
## prior                                                                                                                       3
## rights                                                                                                                      3
## cpas                                                                                                                        3
## following                                                                                                                   3
## infrastructure                                                                                                              3
## nations                                                                                                                     3
## next                                                                                                                        3
## plans                                                                                                                       3
## policies                                                                                                                    3
## targets                                                                                                                     3
## affordable                                                                                                                  3
## innovation                                                                                                                  3
## keep                                                                                                                        3
## limit                                                                                                                       3
## made                                                                                                                        3
## preindustrial                                                                                                               3
## production                                                                                                                  3
## sustainable                                                                                                                 3
## every                                                                                                                       3
## reduced                                                                                                                     3
## education                                                                                                                   3
## encouraging                                                                                                                 3
## equitable                                                                                                                   3
## experience                                                                                                                  3
## incorporating                                                                                                               3
## learning                                                                                                                    3
## taken                                                                                                                       3
## creation                                                                                                                    3
## goal                                                                                                                        3
## homes                                                                                                                       3
## increasingly                                                                                                                3
## per                                                                                                                         3
## pollution                                                                                                                   3
## beyond                                                                                                                      3
## community                                                                                                                   3
## create                                                                                                                      3
## ecosystem                                                                                                                   3
## helping                                                                                                                     3
## strategy                                                                                                                    3
## technologies                                                                                                                3
## fund                                                                                                                        3
## projects                                                                                                                    3
## research                                                                                                                    3
## incentives                                                                                                                  3
## large                                                                                                                       3
## heat                                                                                                                        3
## continues                                                                                                                   3
## present                                                                                                                     3
## variations                                                                                                                  3
## averages                                                                                                                    3
## duration                                                                                                                    3
## wind                                                                                                                        3
## associated                                                                                                                  3
## atmosphere                                                                                                                  3
## circulation                                                                                                                 3
## flow                                                                                                                        3
## good                                                                                                                        3
## long                                                                                                                        3
## season                                                                                                                      3
## agricultural                                                                                                                3
## drought                                                                                                                     3
## emergency                                                                                                                   3
## november                                                                                                                    3
## resulting                                                                                                                   3
## locations                                                                                                                   3
## record                                                                                                                      3
## recorded                                                                                                                    3
## average                                                                                                                     3
## current                                                                                                                     3
## environment                                                                                                                 3
## trends                                                                                                                      3
## summarize                                                                                                                   3
## check                                                                                                                       3
## oscillation                                                                                                                 3
## effect                                                                                                                      3
## ability                                                                                                                     3
## species                                                                                                                     3
## landuse                                                                                                                     3
## already                                                                                                                     3
## developed                                                                                                                   3
## creative                                                                                                                    3
## affect                                                                                                                      3
## nature’s                                                                                                                    3
## addressing                                                                                                                  3
## growing                                                                                                                     3
## transition                                                                                                                  3
## instead                                                                                                                     3
## ways                                                                                                                        3
## codes                                                                                                                       3
## quality                                                                                                                     3
## plant                                                                                                                       3
## led                                                                                                                         3
## introduction                                                                                                                2
## brief                                                                                                                       2
## description                                                                                                                 2
## economically                                                                                                                2
## offers                                                                                                                      2
## due                                                                                                                         2
## especially                                                                                                                  2
## intergovernmental                                                                                                           2
## panel                                                                                                                       2
## pathways                                                                                                                    2
## required                                                                                                                    2
## border                                                                                                                      2
## rocky                                                                                                                       2
## authorities                                                                                                                 2
## census                                                                                                                      2
## ecosystems                                                                                                                  2
## geopolitical                                                                                                                2
## macroclimate                                                                                                                2
## municipalities                                                                                                              2
## school                                                                                                                      2
## subdivisions                                                                                                                2
## zones                                                                                                                       2
## ages                                                                                                                        2
## depending                                                                                                                   2
## fewer                                                                                                                       2
## migration                                                                                                                   2
## senior                                                                                                                      2
## cities                                                                                                                      2
## mostly                                                                                                                      2
## nation                                                                                                                      2
## rural                                                                                                                       2
## towns                                                                                                                       2
## villages                                                                                                                    2
## cariboo                                                                                                                     2
## mining                                                                                                                      2
## plateau                                                                                                                     2
## private                                                                                                                     2
## remote                                                                                                                      2
## specific                                                                                                                    2
## tourism                                                                                                                     2
## contributes                                                                                                                 2
## consent                                                                                                                     2
## examples                                                                                                                    2
## forward                                                                                                                     2
## free                                                                                                                        2
## informed                                                                                                                    2
## much                                                                                                                        2
## oldgrowth                                                                                                                   2
## subsidies                                                                                                                   2
## territory                                                                                                                   2
## unceded                                                                                                                     2
## accomplishments                                                                                                             2
## agreements                                                                                                                  2
## backdrop                                                                                                                    2
## budget                                                                                                                      2
## election                                                                                                                    2
## federal                                                                                                                     2
## liberal                                                                                                                     2
## majority                                                                                                                    2
## making                                                                                                                      2
## management                                                                                                                  2
## minority                                                                                                                    2
## responsibilities                                                                                                            2
## reviewing                                                                                                                   2
## speech                                                                                                                      2
## throne                                                                                                                      2
## equality                                                                                                                    2
## netzero                                                                                                                     2
## ppm                                                                                                                         2
## states                                                                                                                      2
## contributions                                                                                                               2
## c°                                                                                                                          2
## determined                                                                                                                  2
## nationally                                                                                                                  2
## rising                                                                                                                      2
## ambitious                                                                                                                   2
## balancing                                                                                                                   2
## considering                                                                                                                 2
## effective                                                                                                                   2
## monitoring                                                                                                                  2
## participation                                                                                                               2
## public                                                                                                                      2
## rapidly                                                                                                                     2
## risks                                                                                                                       2
## scientific                                                                                                                  2
## technological                                                                                                               2
## vulnerable                                                                                                                  2
## adapting                                                                                                                    2
## advantage                                                                                                                   2
## job                                                                                                                         2
## pricing                                                                                                                     2
## waste                                                                                                                       2
## economics                                                                                                                   2
## low                                                                                                                         2
## negative                                                                                                                    2
## partnerships                                                                                                                2
## consumer                                                                                                                    2
## fossil                                                                                                                      2
## introduced                                                                                                                  2
## lower                                                                                                                       2
## revenue                                                                                                                     2
## efficient                                                                                                                   2
## electric                                                                                                                    2
## existing                                                                                                                    2
## old                                                                                                                         2
## retrofitting                                                                                                                2
## direct                                                                                                                      2
## obvious                                                                                                                     2
## quest                                                                                                                       2
## take                                                                                                                        2
## towards                                                                                                                     2
## factors                                                                                                                     2
## many                                                                                                                        2
## clouds                                                                                                                      2
## conditions                                                                                                                  2
## daily                                                                                                                       2
## direction                                                                                                                   2
## extremes                                                                                                                    2
## intensity                                                                                                                   2
## like                                                                                                                        2
## normal                                                                                                                      2
## place                                                                                                                       2
## pressure                                                                                                                    2
## cycle                                                                                                                       2
## highpressure                                                                                                                2
## influence                                                                                                                   2
## influenced                                                                                                                  2
## largescale                                                                                                                  2
## maritime                                                                                                                    2
## niño                                                                                                                        2
## small                                                                                                                       2
## continental                                                                                                                 2
## latitude                                                                                                                    2
## moderate                                                                                                                    2
## plains                                                                                                                      2
## plateaus                                                                                                                    2
## southern                                                                                                                    2
## varies                                                                                                                      2
## activity                                                                                                                    2
## arctic                                                                                                                      2
## early                                                                                                                       2
## largest                                                                                                                     2
## snow                                                                                                                        2
## burning                                                                                                                     2
## day                                                                                                                         2
## fertile                                                                                                                     2
## fire                                                                                                                        2
## frequency                                                                                                                   2
## human                                                                                                                       2
## impact                                                                                                                      2
## one                                                                                                                         2
## prairie                                                                                                                     2
## rain                                                                                                                        2
## river                                                                                                                       2
## state                                                                                                                       2
## sumas                                                                                                                       2
## values                                                                                                                      2
## december                                                                                                                    2
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf    2
## variability                                                                                                                 2
## drier                                                                                                                       2
## last                                                                                                                        2
## systemic                                                                                                                    2
## maps                                                                                                                        2
## material                                                                                                                    2
## expectations                                                                                                                2
## module                                                                                                                      2
## notes                                                                                                                       2
## slide                                                                                                                       2
## longterm                                                                                                                    2
## oceans                                                                                                                      2
## stabilize                                                                                                                   2
## acidic                                                                                                                      2
## habitat                                                                                                                     2
## adaptive                                                                                                                    2
## vulnerabilities                                                                                                             2
## pages                                                                                                                       2
## necessary                                                                                                                   2
## themes                                                                                                                      2
## wetlands                                                                                                                    2
## across                                                                                                                      2
## often                                                                                                                       2
## populations                                                                                                                 2
## representative                                                                                                              2
## ministry                                                                                                                    2
## reconciliation                                                                                                              2
## sources                                                                                                                     2
## youth                                                                                                                       2
## cleanenergy                                                                                                                 2
## employment                                                                                                                  2
## force                                                                                                                       2
## remove                                                                                                                      2
## resource                                                                                                                    2
## soil                                                                                                                        2
## storage                                                                                                                     2
## store                                                                                                                       2
## timber                                                                                                                      2
## farms                                                                                                                       2
## flooded                                                                                                                     2
## fraser                                                                                                                      2
## legislation                                                                                                                 2
## manure                                                                                                                      2
## valley                                                                                                                      2
## flood                                                                                                                       2
## preserve                                                                                                                    2
## resources                                                                                                                   2
## bold                                                                                                                        2
## exists                                                                                                                      2
## invest                                                                                                                      2
## competing                                                                                                                   2
## advice                                                                                                                      2
## meet                                                                                                                        2
## track                                                                                                                       2
## causing                                                                                                                     2
## damage                                                                                                                      2
## protests                                                                                                                    2
## affordability                                                                                                               2
## consider                                                                                                                    2
## council                                                                                                                     2
## chiefs                                                                                                                      2
## continued                                                                                                                   2
## ongoing                                                                                                                     2
## without                                                                                                                     2
## rebuild                                                                                                                     2
## using                                                                                                                       2
## list                                                                                                                        2
## foster                                                                                                                      2
## …                                                                                                                           2
## needed                                                                                                                      2
## conclusion                                                                                                                  2
## cabinet                                                                                                                     1
## confidential                                                                                                                1
## considerations                                                                                                              1
## discussion                                                                                                                  1
## tool                                                                                                                        1
## vastly                                                                                                                      1
## activities                                                                                                                  1
## cause                                                                                                                       1
## cooperation                                                                                                                 1
## greenhouse                                                                                                                  1
## humanrelated                                                                                                                1
## lessen                                                                                                                      1
## national                                                                                                                    1
## outlined                                                                                                                    1
## reported                                                                                                                    1
## signed                                                                                                                      1
## surface                                                                                                                     1
## alberta                                                                                                                     1
## boreal                                                                                                                      1
## coastline                                                                                                                   1
## rugged                                                                                                                      1
## stretching                                                                                                                  1
## usa                                                                                                                         1
## categories                                                                                                                  1
## distinct                                                                                                                    1
## divided                                                                                                                     1
## divisions                                                                                                                   1
## numerous                                                                                                                    1
## phsyiographic                                                                                                               1
## plus                                                                                                                        1
## similar                                                                                                                     1
## subareas                                                                                                                    1
## useful                                                                                                                      1
## variety                                                                                                                     1
## aging                                                                                                                       1
## births                                                                                                                      1
## deaths                                                                                                                      1
## decrease                                                                                                                    1
## interprovincial                                                                                                             1
## now                                                                                                                         1
## passed                                                                                                                      1
## populace                                                                                                                    1
## retire                                                                                                                      1
## shows                                                                                                                       1
## slightly                                                                                                                    1
## stats                                                                                                                       1
## working                                                                                                                     1
## age                                                                                                                         1
## comprise                                                                                                                    1
## least                                                                                                                       1
## okanagan                                                                                                                    1
## reserves                                                                                                                    1
## urban                                                                                                                       1
## younger                                                                                                                     1
## cover                                                                                                                       1
## culture                                                                                                                     1
## drivers                                                                                                                     1
## iii                                                                                                                         1
## island                                                                                                                      1
## kootenay                                                                                                                    1
## mainland                                                                                                                    1
## nechako                                                                                                                     1
## northeast                                                                                                                   1
## occur                                                                                                                       1
## occurs                                                                                                                      1
## pipelines                                                                                                                   1
## southwest                                                                                                                   1
## thompsonokanagan                                                                                                            1
## utilities                                                                                                                   1
## vancouver                                                                                                                   1
## decreasing                                                                                                                  1
## domestic                                                                                                                    1
## emitting                                                                                                                    1
## gross                                                                                                                       1
## hydro                                                                                                                       1
## manufacturing                                                                                                               1
## megatons                                                                                                                    1
## product                                                                                                                     1
## service                                                                                                                     1
## acceptance                                                                                                                  1
## access                                                                                                                      1
## authority                                                                                                                   1
## citizens                                                                                                                    1
## creek                                                                                                                       1
## decisionmaking                                                                                                              1
## exercise                                                                                                                    1
## expected                                                                                                                    1
## fairy                                                                                                                       1
## gaslink                                                                                                                     1
## going                                                                                                                       1
## landscape                                                                                                                   1
## pipeline                                                                                                                    1
## protest                                                                                                                     1
## protocol                                                                                                                    1
## right                                                                                                                       1
## undrip                                                                                                                      1
## wet’suwet’en                                                                                                                1
## collaborating                                                                                                               1
## crisis”                                                                                                                     1
## focusing                                                                                                                    1
## followed                                                                                                                    1
## formed                                                                                                                      1
## furthering                                                                                                                  1
## highlighted                                                                                                                 1
## investing                                                                                                                   1
## money                                                                                                                       1
## ndp                                                                                                                         1
## prepare                                                                                                                     1
## prevention                                                                                                                  1
## resilient                                                                                                                   1
## set                                                                                                                         1
## setting                                                                                                                     1
## wildfires                                                                                                                   1
## “climate                                                                                                                    1
## affecting                                                                                                                   1
## affirms                                                                                                                     1
## assessment                                                                                                                  1
## call                                                                                                                        1
## consumption                                                                                                                 1
## currently                                                                                                                   1
## drives                                                                                                                      1
## exceed                                                                                                                      1
## experts                                                                                                                     1
## fall                                                                                                                        1
## life                                                                                                                        1
## likely                                                                                                                      1
## newest                                                                                                                      1
## reductions”                                                                                                                 1
## responsible                                                                                                                 1
## special                                                                                                                     1
## sustainability                                                                                                              1
## understanding                                                                                                               1
## unless                                                                                                                      1
## update                                                                                                                      1
## written                                                                                                                     1
## “deep                                                                                                                       1
## agreed                                                                                                                      1
## binding                                                                                                                     1
## detailed                                                                                                                    1
## legally                                                                                                                     1
## motivated                                                                                                                   1
## preferably                                                                                                                  1
## ratified                                                                                                                    1
## sovereign                                                                                                                   1
## submit                                                                                                                      1
## treaty                                                                                                                      1
## available                                                                                                                   1
## aware                                                                                                                       1
## best                                                                                                                        1
## diversifying                                                                                                                1
## economies                                                                                                                   1
## efforts                                                                                                                     1
## enacting                                                                                                                    1
## evaluating                                                                                                                  1
## financing                                                                                                                   1
## guided                                                                                                                      1
## knowledge“                                                                                                                  1
## mobilizing                                                                                                                  1
## planning                                                                                                                    1
## programs                                                                                                                    1
## responses                                                                                                                   1
## transparent                                                                                                                 1
## unfcc                                                                                                                       1
## vision“                                                                                                                     1
## “                                                                                                                           1
## “longterm                                                                                                                   1
## cutting                                                                                                                     1
## enhanced                                                                                                                    1
## families                                                                                                                    1
## habitats                                                                                                                    1
## household                                                                                                                   1
## innovating                                                                                                                  1
## original                                                                                                                    1
## outlining                                                                                                                   1
## rebates                                                                                                                     1
## respecting                                                                                                                  1
## submitted                                                                                                                   1
## bioeconomy                                                                                                                  1
## climatechange                                                                                                               1
## collecting                                                                                                                  1
## cultivated                                                                                                                  1
## data                                                                                                                        1
## extend                                                                                                                      1
## fisheries                                                                                                                   1
## globally                                                                                                                    1
## map                                                                                                                         1
## preparedness                                                                                                                1
## purposes                                                                                                                    1
## ready                                                                                                                       1
## released                                                                                                                    1
## road                                                                                                                        1
## targeted                                                                                                                    1
## accelerator                                                                                                                 1
## allow                                                                                                                       1
## capped                                                                                                                      1
## cumulatively                                                                                                                1
## offered                                                                                                                     1
## proposals                                                                                                                   1
## reviewed                                                                                                                    1
## america                                                                                                                     1
## applied                                                                                                                     1
## canadians                                                                                                                   1
## credit                                                                                                                      1
## fueltype                                                                                                                    1
## kind                                                                                                                        1
## metric                                                                                                                      1
## middleincome                                                                                                                1
## purchase                                                                                                                    1
## rebated                                                                                                                     1
## solution                                                                                                                    1
## starting                                                                                                                    1
## taxes                                                                                                                       1
## ton                                                                                                                         1
## charging                                                                                                                    1
## deferring                                                                                                                   1
## electrifying                                                                                                                1
## expanding                                                                                                                   1
## installations                                                                                                               1
## passenger                                                                                                                   1
## previously                                                                                                                  1
## promises                                                                                                                    1
## promoting                                                                                                                   1
## pump                                                                                                                        1
## subsidizing                                                                                                                 1
## vehicles                                                                                                                    1
## world                                                                                                                       1
## zeroemission                                                                                                                1
## competitively                                                                                                               1
## final                                                                                                                       1
## leader                                                                                                                      1
## move                                                                                                                        1
## sections                                                                                                                    1
## rest                                                                                                                        1
## “inform                                                                                                                     1
## ”                                                                                                                           1
## analyzing                                                                                                                   1
## impacted                                                                                                                    1
## inform                                                                                                                      1
## understand                                                                                                                  1
## barometric                                                                                                                  1
## common                                                                                                                      1
## difference                                                                                                                  1
## distinguishing                                                                                                              1
## hourly                                                                                                                      1
## influences                                                                                                                  1
## recognize                                                                                                                   1
## seasonally                                                                                                                  1
## speed                                                                                                                       1
## start                                                                                                                       1
## statistical                                                                                                                 1
## variabilities                                                                                                               1
## vary                                                                                                                        1
## alternating                                                                                                                 1
## canada‘s                                                                                                                    1
## climatic                                                                                                                    1
## frostfree                                                                                                                   1
## lots                                                                                                                        1
## lowpressure                                                                                                                 1
## moderating                                                                                                                  1
## multiyear                                                                                                                   1
## periods                                                                                                                     1
## prevailing                                                                                                                  1
## rainfall                                                                                                                    1
## seasonal                                                                                                                    1
## warmest                                                                                                                     1
## west                                                                                                                        1
## winds                                                                                                                       1
## basins                                                                                                                      1
## block                                                                                                                       1
## columbia                                                                                                                    1
## coming                                                                                                                      1
## distance                                                                                                                    1
## distribute                                                                                                                  1
## eastern                                                                                                                     1
## elevation                                                                                                                   1
## exposure                                                                                                                    1
## gradient                                                                                                                    1
## great                                                                                                                       1
## islands                                                                                                                     1
## marine                                                                                                                      1
## masses                                                                                                                      1
## mild                                                                                                                        1
## northsouth                                                                                                                  1
## parallel                                                                                                                    1
## prairies                                                                                                                    1
## separated                                                                                                                   1
## afternoons                                                                                                                  1
## brings                                                                                                                      1
## driest                                                                                                                      1
## dryer                                                                                                                       1
## elevations                                                                                                                  1
## experiences                                                                                                                 1
## generating                                                                                                                  1
## higher                                                                                                                      1
## rainshadow                                                                                                                  1
## range                                                                                                                       1
## side                                                                                                                        1
## slopes                                                                                                                      1
## southcentral                                                                                                                1
## spring                                                                                                                      1
## thunderstorm                                                                                                                1
## valleybottoms                                                                                                               1
## valleys                                                                                                                     1
## westerly                                                                                                                    1
## wet                                                                                                                         1
## days                                                                                                                        1
## declared                                                                                                                    1
## dramatic                                                                                                                    1
## history                                                                                                                     1
## lives                                                                                                                       1
## longest                                                                                                                     1
## recordbreaking                                                                                                              1
## waves                                                                                                                       1
## wild                                                                                                                        1
## worst                                                                                                                       1
## floods                                                                                                                      1
## george                                                                                                                      1
## harbour                                                                                                                     1
## hot                                                                                                                         1
## june                                                                                                                        1
## lytton                                                                                                                      1
## prince                                                                                                                      1
## third                                                                                                                       1
## victoria                                                                                                                    1
## anything                                                                                                                    1
## etal                                                                                                                        1
## glaciers                                                                                                                    1
## mention                                                                                                                     1
## moisture                                                                                                                    1
## page                                                                                                                        1
## spittlehouse                                                                                                                1
## normals                                                                                                                     1
## compared                                                                                                                    1
## norm                                                                                                                        1
## year                                                                                                                        1
## max                                                                                                                         1
## min                                                                                                                         1
## norms                                                                                                                       1
## precip                                                                                                                      1
## temp                                                                                                                        1
## differ                                                                                                                      1
## mean                                                                                                                        1
## planetary                                                                                                                   1
## leading                                                                                                                     1
## jurisdiction                                                                                                                1
## actuaries                                                                                                                   1
## index                                                                                                                       1
## asterix                                                                                                                     1
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                        1
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                           1
## strength                                                                                                                    1
## forecast                                                                                                                    1
## modeled                                                                                                                     1
## prediction                                                                                                                  1
## projection                                                                                                                  1
## see                                                                                                                         1
## httpstwittercomthomasforbcstatuss                                                                                           1
## amount                                                                                                                      1
## drying                                                                                                                      1
## melt                                                                                                                        1
## persistence                                                                                                                 1
## snowpack                                                                                                                    1
## get                                                                                                                         1
## hotter                                                                                                                      1
## summers                                                                                                                     1
## trend                                                                                                                       1
## months                                                                                                                      1
## decadal                                                                                                                     1
## american                                                                                                                    1
## lifetime                                                                                                                    1
## pattern                                                                                                                     1
## amplified                                                                                                                   1
## coincided                                                                                                                   1
## cycles                                                                                                                      1
## series                                                                                                                      1
## imbalance                                                                                                                   1
## increases                                                                                                                   1
## keeping                                                                                                                     1
## relative                                                                                                                    1
## transfer                                                                                                                    1
## •                                                                                                                           1
## affects                                                                                                                     1
## heating                                                                                                                     1
## slowly                                                                                                                      1
## cumulative                                                                                                                  1
## deforestation                                                                                                               1
## esp                                                                                                                         1
## march                                                                                                                       1
## nitrous                                                                                                                     1
## oxide                                                                                                                       1
## httpsbritishcolumbiacombcweatherbc                                                                                          1
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                    1
## httpsopentextbccageographychapterclimateenvironmentbc                                                                       1
## httpsclimatechangecanadacabritishcolumbia                                                                                   1
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                         1
## guiding                                                                                                                     1
## makers                                                                                                                      1
## presented                                                                                                                   1
## scientists                                                                                                                  1
## considers                                                                                                                   1
## bc’                                                                                                                         1
## depends                                                                                                                     1
## grasslands                                                                                                                  1
## healthier                                                                                                                   1
## matter                                                                                                                      1
## nature                                                                                                                      1
## particulate                                                                                                                 1
## retention                                                                                                                   1
## shrubs                                                                                                                      1
## stored                                                                                                                      1
## zone                                                                                                                        1
## ‘beautiful                                                                                                                  1
## accessible                                                                                                                  1
## distributed                                                                                                                 1
## excluded                                                                                                                    1
## inclusive                                                                                                                   1
## inequality                                                                                                                  1
## multiple                                                                                                                    1
## reductions                                                                                                                  1
## spreading                                                                                                                   1
## thus                                                                                                                        1
## consultation                                                                                                                1
## diesel                                                                                                                      1
## generators                                                                                                                  1
## relations                                                                                                                   1
## reliance                                                                                                                    1
## develop                                                                                                                     1
## environments                                                                                                                1
## explore                                                                                                                     1
## inspired                                                                                                                    1
## lowemission                                                                                                                 1
## researchers                                                                                                                 1
## revitalized                                                                                                                 1
## skilled                                                                                                                     1
## smooth                                                                                                                      1
## student                                                                                                                     1
## chance                                                                                                                      1
## cycling                                                                                                                     1
## diversification                                                                                                             1
## managed                                                                                                                     1
## newly                                                                                                                       1
## nutrient                                                                                                                    1
## preservation                                                                                                                1
## purification                                                                                                                1
## recreation                                                                                                                  1
## rethink                                                                                                                     1
## spirituality                                                                                                                1
## stewardship                                                                                                                 1
## tissue                                                                                                                      1
## wildlife                                                                                                                    1
## woody                                                                                                                       1
## abound                                                                                                                      1
## contribution                                                                                                                1
## ensures                                                                                                                     1
## farming                                                                                                                     1
## importing                                                                                                                   1
## preserving                                                                                                                  1
## ranching                                                                                                                    1
## rebuilt                                                                                                                     1
## recently                                                                                                                    1
## reduces                                                                                                                     1
## reserve                                                                                                                     1
## destructive                                                                                                                 1
## environmentally                                                                                                             1
## preparing                                                                                                                   1
## reconstruct                                                                                                                 1
## thrive                                                                                                                      1
## zoning                                                                                                                      1
## cite                                                                                                                        1
## cleaning                                                                                                                    1
## covid                                                                                                                       1
## greatly                                                                                                                     1
## lockdown                                                                                                                    1
## looking                                                                                                                     1
## markets                                                                                                                     1
## pays                                                                                                                        1
## polluter                                                                                                                    1
## principle                                                                                                                   1
## providing                                                                                                                   1
## reassessing                                                                                                                 1
## reevaluate                                                                                                                  1
## something                                                                                                                   1
## try                                                                                                                         1
## interests                                                                                                                   1
## involves                                                                                                                    1
## myriad                                                                                                                      1
## detractors                                                                                                                  1
## measure                                                                                                                     1
## supporters                                                                                                                  1
## highlight                                                                                                                   1
## might                                                                                                                       1
## mitigated                                                                                                                   1
## overcome                                                                                                                    1
## ided                                                                                                                        1
## discuss                                                                                                                     1
## displaced                                                                                                                   1
## communicate                                                                                                                 1
## inspire                                                                                                                     1
## accepting                                                                                                                   1
## comes                                                                                                                       1
## continuing                                                                                                                  1
## directions                                                                                                                  1
## emit                                                                                                                        1
## expensive                                                                                                                   1
## inherent                                                                                                                    1
## paths                                                                                                                       1
## problem                                                                                                                     1
## relying                                                                                                                     1
## researching                                                                                                                 1
## simply                                                                                                                      1
## source                                                                                                                      1
## suggest                                                                                                                     1
## timelines                                                                                                                   1
## unproven                                                                                                                    1
## concerns                                                                                                                    1
## give                                                                                                                        1
## legitimate                                                                                                                  1
## oceans”                                                                                                                     1
## places                                                                                                                      1
## protect                                                                                                                     1
## raised                                                                                                                      1
## shellfish                                                                                                                   1
## shells                                                                                                                      1
## shortterm                                                                                                                   1
## “irreversible                                                                                                               1
## advisory                                                                                                                    1
## advocating                                                                                                                  1
## businesses                                                                                                                  1
## consumers                                                                                                                   1
## disabled                                                                                                                    1
## individual                                                                                                                  1
## member                                                                                                                      1
## missing                                                                                                                     1
## organizations                                                                                                               1
## poverty                                                                                                                     1
## seeking                                                                                                                     1
## accepted                                                                                                                    1
## declaration                                                                                                                 1
## departments                                                                                                                 1
## drip                                                                                                                        1
## engagement                                                                                                                  1
## forms                                                                                                                       1
## governance                                                                                                                  1
## hereditary                                                                                                                  1
## indian                                                                                                                      1
## lands                                                                                                                       1
## peoples                                                                                                                     1
## personnel                                                                                                                   1
## protocols                                                                                                                   1
## reservation                                                                                                                 1
## situated                                                                                                                    1
## territorial                                                                                                                 1
## treaties                                                                                                                    1
## decline                                                                                                                     1
## except                                                                                                                      1
## expansion                                                                                                                   1
## general                                                                                                                     1
## greenenergy                                                                                                                 1
## retirements                                                                                                                 1
## socioeconomic                                                                                                               1
## absorption                                                                                                                  1
## ecoservices                                                                                                                 1
## insect                                                                                                                      1
## pause                                                                                                                       1
## stressed                                                                                                                    1
## system                                                                                                                      1
## techniques                                                                                                                  1
## uncertainty                                                                                                                 1
## unsustainable                                                                                                               1
## addressed                                                                                                                   1
## alternate                                                                                                                   1
## became                                                                                                                      1
## grown                                                                                                                       1
## locally                                                                                                                     1
## prone                                                                                                                       1
## remain                                                                                                                      1
## toxins                                                                                                                      1
## adaption                                                                                                                    1
## anew                                                                                                                        1
## considered                                                                                                                  1
## expense                                                                                                                     1
## farm                                                                                                                        1
## income                                                                                                                      1
## infrastructure”                                                                                                             1
## lost                                                                                                                        1
## policies”                                                                                                                   1
## require                                                                                                                     1
## results                                                                                                                     1
## “ambitious                                                                                                                  1
## “systemic                                                                                                                   1
## comparisons                                                                                                                 1
## previous                                                                                                                    1
## conclusions                                                                                                                 1
## summaryconclude                                                                                                             1
## parts                                                                                                                       1
## open                                                                                                                        1
## paragraph                                                                                                                   1
## parti                                                                                                                       1
## along                                                                                                                       1
## demographic                                                                                                                 1
## varying                                                                                                                     1
## actor                                                                                                                       1
## pick                                                                                                                        1
## fulfillment                                                                                                                 1
## identification                                                                                                              1
## issue                                                                                                                       1
## suggested                                                                                                                   1
## actionoriented                                                                                                              1
## inclusion                                                                                                                   1
## practical                                                                                                                   1
## rationales                                                                                                                  1
## term                                                                                                                        1
## think                                                                                                                       1
## underway                                                                                                                    1
## factor                                                                                                                      1
## consideration                                                                                                               1
## number                                                                                                                      1
## order                                                                                                                       1
## posed                                                                                                                       1
## strategic                                                                                                                   1
## avoid                                                                                                                       1
## linealigned                                                                                                                 1
## sake                                                                                                                        1
## sure                                                                                                                        1
## thought                                                                                                                     1
## wise                                                                                                                        1
## appropriate                                                                                                                 1
## estate                                                                                                                      1
## extraction                                                                                                                  1
## real                                                                                                                        1
## restore                                                                                                                     1
## valuable                                                                                                                    1
## assure                                                                                                                      1
## fair                                                                                                                        1
## finance                                                                                                                     1
## industrial                                                                                                                  1
## just                                                                                                                        1
## supportive                                                                                                                  1
## green                                                                                                                       1
## process                                                                                                                     1
## relationships                                                                                                               1
## together                                                                                                                    1
## carbonfree                                                                                                                  1
## design                                                                                                                      1
## engineer                                                                                                                    1
## innovate                                                                                                                    1
## maintain                                                                                                                    1
## produce                                                                                                                     1
## train                                                                                                                       1
## transitioning                                                                                                               1
## young                                                                                                                       1
## capture                                                                                                                     1
## deciduous                                                                                                                   1
## diverse                                                                                                                     1
## effectively                                                                                                                 1
## firebreak                                                                                                                   1
## functions                                                                                                                   1
## mills                                                                                                                       1
## refit                                                                                                                       1
## smaller                                                                                                                     1
## tree                                                                                                                        1
## compliance                                                                                                                  1
## continuation                                                                                                                1
## enforcement                                                                                                                 1
## equipment                                                                                                                   1
## gaspowered                                                                                                                  1
## innovations                                                                                                                 1
## replace                                                                                                                     1
## demolishing                                                                                                                 1
## don’t                                                                                                                       1
## fireresiliency                                                                                                              1
## focus                                                                                                                       1
## restoring                                                                                                                   1
## risk                                                                                                                        1
## safe                                                                                                                        1
## structures                                                                                                                  1
## updating                                                                                                                    1
## exhaustive                                                                                                                  1
## ‘lens’                                                                                                                      1
## sense                                                                                                                       1
## urgency                                                                                                                     1
## ultimate                                                                                                                    1
## initiating                                                                                                                  1
## lead                                                                                                                        1
## market                                                                                                                      1
## initial                                                                                                                     1
## outline                                                                                                                     1
## refer                                                                                                                       1
## difference’                                                                                                                 1
## know                                                                                                                        1
## recognizing                                                                                                                 1
## ‘make                                                                                                                       1
## honour                                                                                                                      1
## reason                                                                                                                      1
## reports                                                                                                                     1
## taking                                                                                                                      1
## british                                                                                                                     1
## business                                                                                                                    1
## columbians                                                                                                                  1
## ensured                                                                                                                     1
## stewarding                                                                                                                  1
## unique                                                                                                                      1
## vibrant                                                                                                                     1

4 Frequency Table

wc$tdm
## <<TermDocumentMatrix (terms: 1282, documents: 333)>>
## Non-/sparse entries: 2969/423937
## Sparsity           : 99%
## Maximal term length: 120
## Weighting          : term frequency (tf)
freq_tab <- wc$freqTable
freq_tab
##                                                                                                                                                                                                                                              word
## climate                                                                                                                                                                                                                                   climate
## emissions                                                                                                                                                                                                                               emissions
## bc’s                                                                                                                                                                                                                                         bc’s
## will                                                                                                                                                                                                                                         will
## change                                                                                                                                                                                                                                     change
## reduce                                                                                                                                                                                                                                     reduce
## carbon                                                                                                                                                                                                                                     carbon
## help                                                                                                                                                                                                                                         help
## regions                                                                                                                                                                                                                                   regions
## ghg                                                                                                                                                                                                                                           ghg
## action                                                                                                                                                                                                                                     action
## future                                                                                                                                                                                                                                     future
## indigenous                                                                                                                                                                                                                             indigenous
## challenges                                                                                                                                                                                                                             challenges
## weather                                                                                                                                                                                                                                   weather
## temperature                                                                                                                                                                                                                           temperature
## also                                                                                                                                                                                                                                         also
## industry                                                                                                                                                                                                                                 industry
## opportunity                                                                                                                                                                                                                           opportunity
## changing                                                                                                                                                                                                                                 changing
## social                                                                                                                                                                                                                                     social
## economic                                                                                                                                                                                                                                 economic
## building                                                                                                                                                                                                                                 building
## opportunities                                                                                                                                                                                                                       opportunities
## recommendations                                                                                                                                                                                                                   recommendations
## new                                                                                                                                                                                                                                           new
## mitigation                                                                                                                                                                                                                             mitigation
## gas                                                                                                                                                                                                                                           gas
## including                                                                                                                                                                                                                               including
## paris                                                                                                                                                                                                                                       paris
## provincial                                                                                                                                                                                                                             provincial
## canada’s                                                                                                                                                                                                                                 canada’s
## land                                                                                                                                                                                                                                         land
## development                                                                                                                                                                                                                           development
## energy                                                                                                                                                                                                                                     energy
## reducing                                                                                                                                                                                                                                 reducing
## words                                                                                                                                                                                                                                       words
## –                                                                                                                                                                                                                                               –
## can                                                                                                                                                                                                                                           can
## strategies                                                                                                                                                                                                                             strategies
## global                                                                                                                                                                                                                                     global
## increased                                                                                                                                                                                                                               increased
## agriculture                                                                                                                                                                                                                           agriculture
## natural                                                                                                                                                                                                                                   natural
## need                                                                                                                                                                                                                                         need
## skills                                                                                                                                                                                                                                     skills
## recommendation                                                                                                                                                                                                                     recommendation
## food                                                                                                                                                                                                                                         food
## supporting                                                                                                                                                                                                                             supporting
## changes                                                                                                                                                                                                                                   changes
## challenge                                                                                                                                                                                                                               challenge
## forests                                                                                                                                                                                                                                   forests
## communities                                                                                                                                                                                                                           communities
## adaptation                                                                                                                                                                                                                             adaptation
## clean                                                                                                                                                                                                                                       clean
## technology                                                                                                                                                                                                                             technology
## benefits                                                                                                                                                                                                                                 benefits
## provide                                                                                                                                                                                                                                   provide
## events                                                                                                                                                                                                                                     events
## different                                                                                                                                                                                                                               different
## people                                                                                                                                                                                                                                     people
## political                                                                                                                                                                                                                               political
## ipcc                                                                                                                                                                                                                                         ipcc
## growth                                                                                                                                                                                                                                     growth
## region                                                                                                                                                                                                                                     region
## interior                                                                                                                                                                                                                                 interior
## buildings                                                                                                                                                                                                                               buildings
## oil                                                                                                                                                                                                                                           oil
## transportation                                                                                                                                                                                                                     transportation
## protecting                                                                                                                                                                                                                             protecting
## training                                                                                                                                                                                                                                 training
## agreement                                                                                                                                                                                                                               agreement
## integrity                                                                                                                                                                                                                               integrity
## well                                                                                                                                                                                                                                         well
## section                                                                                                                                                                                                                                   section
## extreme                                                                                                                                                                                                                                   extreme
## air                                                                                                                                                                                                                                           air
## environmental                                                                                                                                                                                                                       environmental
## needs                                                                                                                                                                                                                                       needs
## support                                                                                                                                                                                                                                   support
## ocean                                                                                                                                                                                                                                       ocean
## biodiversity                                                                                                                                                                                                                         biodiversity
## include                                                                                                                                                                                                                                   include
## increasing                                                                                                                                                                                                                             increasing
## first                                                                                                                                                                                                                                       first
## urgent                                                                                                                                                                                                                                     urgent
## commitments                                                                                                                                                                                                                           commitments
## capacity                                                                                                                                                                                                                                 capacity
## security                                                                                                                                                                                                                                 security
## ecological                                                                                                                                                                                                                             ecological
## lowcarbon                                                                                                                                                                                                                               lowcarbon
## atmospheric                                                                                                                                                                                                                           atmospheric
## services                                                                                                                                                                                                                                 services
## analysis                                                                                                                                                                                                                                 analysis
## report                                                                                                                                                                                                                                     report
## cleanbc                                                                                                                                                                                                                                   cleanbc
## ndc                                                                                                                                                                                                                                           ndc
## mountains                                                                                                                                                                                                                               mountains
## regional                                                                                                                                                                                                                                 regional
## groups                                                                                                                                                                                                                                     groups
## north                                                                                                                                                                                                                                       north
## potential                                                                                                                                                                                                                               potential
## coastal                                                                                                                                                                                                                                   coastal
## adapt                                                                                                                                                                                                                                       adapt
## commitment                                                                                                                                                                                                                             commitment
## past                                                                                                                                                                                                                                         past
## since                                                                                                                                                                                                                                       since
## climates                                                                                                                                                                                                                                 climates
## find                                                                                                                                                                                                                                         find
## levels                                                                                                                                                                                                                                     levels
## °c                                                                                                                                                                                                                                             °c
## temperatures                                                                                                                                                                                                                         temperatures
## years                                                                                                                                                                                                                                       years
## ensuring                                                                                                                                                                                                                                 ensuring
## equity                                                                                                                                                                                                                                     equity
## precipitation                                                                                                                                                                                                                       precipitation
## summary                                                                                                                                                                                                                                   summary
## systems                                                                                                                                                                                                                                   systems
## century                                                                                                                                                                                                                                   century
## incorporate                                                                                                                                                                                                                           incorporate
## solutions                                                                                                                                                                                                                               solutions
## water                                                                                                                                                                                                                                       water
## ensure                                                                                                                                                                                                                                     ensure
## important                                                                                                                                                                                                                               important
## accord                                                                                                                                                                                                                                     accord
## address                                                                                                                                                                                                                                   address
## canada                                                                                                                                                                                                                                     canada
## impacts                                                                                                                                                                                                                                   impacts
## international                                                                                                                                                                                                                       international
## warming                                                                                                                                                                                                                                   warming
## pacific                                                                                                                                                                                                                                   pacific
## province                                                                                                                                                                                                                                 province
## south                                                                                                                                                                                                                                       south
## health                                                                                                                                                                                                                                     health
## population                                                                                                                                                                                                                             population
## result                                                                                                                                                                                                                                     result
## though                                                                                                                                                                                                                                     though
## within                                                                                                                                                                                                                                     within
## forestry                                                                                                                                                                                                                                 forestry
## key                                                                                                                                                                                                                                           key
## sectors                                                                                                                                                                                                                                   sectors
## actions                                                                                                                                                                                                                                   actions
## continue                                                                                                                                                                                                                                 continue
## local                                                                                                                                                                                                                                       local
## based                                                                                                                                                                                                                                       based
## flooding                                                                                                                                                                                                                                 flooding
## canadian                                                                                                                                                                                                                                 canadian
## goals                                                                                                                                                                                                                                       goals
## time                                                                                                                                                                                                                                         time
## jobs                                                                                                                                                                                                                                         jobs
## economy                                                                                                                                                                                                                                   economy
## forest                                                                                                                                                                                                                                     forest
## fulfill                                                                                                                                                                                                                                   fulfill
## reduction                                                                                                                                                                                                                               reduction
## innovative                                                                                                                                                                                                                             innovative
## mitigate                                                                                                                                                                                                                                 mitigate
## policy                                                                                                                                                                                                                                     policy
## trees                                                                                                                                                                                                                                       trees
## become                                                                                                                                                                                                                                     become
## work                                                                                                                                                                                                                                         work
## make                                                                                                                                                                                                                                         make
## communication                                                                                                                                                                                                                       communication
## copied                                                                                                                                                                                                                                     copied
## edited                                                                                                                                                                                                                                     edited
## managing                                                                                                                                                                                                                                 managing
## still                                                                                                                                                                                                                                       still
## part                                                                                                                                                                                                                                         part
## contribute                                                                                                                                                                                                                             contribute
## live                                                                                                                                                                                                                                         live
## respond                                                                                                                                                                                                                                   respond
## accelerated                                                                                                                                                                                                                           accelerated
## plan                                                                                                                                                                                                                                         plan
## area                                                                                                                                                                                                                                         area
## mountain                                                                                                                                                                                                                                 mountain
## northern                                                                                                                                                                                                                                 northern
## total                                                                                                                                                                                                                                       total
## creating                                                                                                                                                                                                                                 creating
## districts                                                                                                                                                                                                                               districts
## high                                                                                                                                                                                                                                         high
## use                                                                                                                                                                                                                                           use
## increase                                                                                                                                                                                                                                 increase
## less                                                                                                                                                                                                                                         less
## may                                                                                                                                                                                                                                           may
## projected                                                                                                                                                                                                                               projected
## workers                                                                                                                                                                                                                                   workers
## central                                                                                                                                                                                                                                   central
## experienced                                                                                                                                                                                                                           experienced
## coast                                                                                                                                                                                                                                       coast
## gdp                                                                                                                                                                                                                                           gdp
## government                                                                                                                                                                                                                             government
## recent                                                                                                                                                                                                                                     recent
## financial                                                                                                                                                                                                                               financial
## recovery                                                                                                                                                                                                                                 recovery
## wildfire                                                                                                                                                                                                                                 wildfire
## balance                                                                                                                                                                                                                                   balance
## healthy                                                                                                                                                                                                                                   healthy
## rise                                                                                                                                                                                                                                         rise
## effects                                                                                                                                                                                                                                   effects
## knowledge                                                                                                                                                                                                                               knowledge
## resilience                                                                                                                                                                                                                             resilience
## traditional                                                                                                                                                                                                                           traditional
## competitive                                                                                                                                                                                                                           competitive
## emission                                                                                                                                                                                                                                 emission
## encourage                                                                                                                                                                                                                               encourage
## fuel                                                                                                                                                                                                                                         fuel
## tax                                                                                                                                                                                                                                           tax
## costs                                                                                                                                                                                                                                       costs
## sector                                                                                                                                                                                                                                     sector
## workforce                                                                                                                                                                                                                               workforce
## becoming                                                                                                                                                                                                                                 becoming
## patterns                                                                                                                                                                                                                                 patterns
## period                                                                                                                                                                                                                                     period
## summer                                                                                                                                                                                                                                     summer
## winter                                                                                                                                                                                                                                     winter
## cold                                                                                                                                                                                                                                         cold
## warm                                                                                                                                                                                                                                         warm
## wetter                                                                                                                                                                                                                                     wetter
## fires                                                                                                                                                                                                                                       fires
## observed                                                                                                                                                                                                                                 observed
## look                                                                                                                                                                                                                                         look
## lecture                                                                                                                                                                                                                                   lecture
##                                                                                                                                                                                                                                                
## methane                                                                                                                                                                                                                                   methane
## offer                                                                                                                                                                                                                                       offer
## build                                                                                                                                                                                                                                       build
## rebuilding                                                                                                                                                                                                                             rebuilding
## way                                                                                                                                                                                                                                           way
## intro                                                                                                                                                                                                                                       intro
## background                                                                                                                                                                                                                             background
## developing                                                                                                                                                                                                                             developing
## geographic                                                                                                                                                                                                                             geographic
## includes                                                                                                                                                                                                                                 includes
## industries                                                                                                                                                                                                                             industries
## information                                                                                                                                                                                                                           information
## used                                                                                                                                                                                                                                         used
## created                                                                                                                                                                                                                                   created
## dioxide                                                                                                                                                                                                                                   dioxide
## earth’s                                                                                                                                                                                                                                   earth’s
## issues                                                                                                                                                                                                                                     issues
## obligations                                                                                                                                                                                                                           obligations
## roadmap                                                                                                                                                                                                                                   roadmap
## crown                                                                                                                                                                                                                                       crown
## east                                                                                                                                                                                                                                         east
## hectares                                                                                                                                                                                                                                 hectares
## million                                                                                                                                                                                                                                   million
## ranges                                                                                                                                                                                                                                     ranges
## western                                                                                                                                                                                                                                   western
## biogeoclimatic                                                                                                                                                                                                                     biogeoclimatic
## manage                                                                                                                                                                                                                                     manage
## vegetation                                                                                                                                                                                                                             vegetation
## demographics                                                                                                                                                                                                                         demographics
## areas                                                                                                                                                                                                                                       areas
## territories                                                                                                                                                                                                                           territories
## dry                                                                                                                                                                                                                                           dry
## geography                                                                                                                                                                                                                               geography
## construction                                                                                                                                                                                                                         construction
## logging                                                                                                                                                                                                                                   logging
## prior                                                                                                                                                                                                                                       prior
## rights                                                                                                                                                                                                                                     rights
## cpas                                                                                                                                                                                                                                         cpas
## following                                                                                                                                                                                                                               following
## infrastructure                                                                                                                                                                                                                     infrastructure
## nations                                                                                                                                                                                                                                   nations
## next                                                                                                                                                                                                                                         next
## plans                                                                                                                                                                                                                                       plans
## policies                                                                                                                                                                                                                                 policies
## targets                                                                                                                                                                                                                                   targets
## affordable                                                                                                                                                                                                                             affordable
## innovation                                                                                                                                                                                                                             innovation
## keep                                                                                                                                                                                                                                         keep
## limit                                                                                                                                                                                                                                       limit
## made                                                                                                                                                                                                                                         made
## preindustrial                                                                                                                                                                                                                       preindustrial
## production                                                                                                                                                                                                                             production
## sustainable                                                                                                                                                                                                                           sustainable
## every                                                                                                                                                                                                                                       every
## reduced                                                                                                                                                                                                                                   reduced
## education                                                                                                                                                                                                                               education
## encouraging                                                                                                                                                                                                                           encouraging
## equitable                                                                                                                                                                                                                               equitable
## experience                                                                                                                                                                                                                             experience
## incorporating                                                                                                                                                                                                                       incorporating
## learning                                                                                                                                                                                                                                 learning
## taken                                                                                                                                                                                                                                       taken
## creation                                                                                                                                                                                                                                 creation
## goal                                                                                                                                                                                                                                         goal
## homes                                                                                                                                                                                                                                       homes
## increasingly                                                                                                                                                                                                                         increasingly
## per                                                                                                                                                                                                                                           per
## pollution                                                                                                                                                                                                                               pollution
## beyond                                                                                                                                                                                                                                     beyond
## community                                                                                                                                                                                                                               community
## create                                                                                                                                                                                                                                     create
## ecosystem                                                                                                                                                                                                                               ecosystem
## helping                                                                                                                                                                                                                                   helping
## strategy                                                                                                                                                                                                                                 strategy
## technologies                                                                                                                                                                                                                         technologies
## fund                                                                                                                                                                                                                                         fund
## projects                                                                                                                                                                                                                                 projects
## research                                                                                                                                                                                                                                 research
## incentives                                                                                                                                                                                                                             incentives
## large                                                                                                                                                                                                                                       large
## heat                                                                                                                                                                                                                                         heat
## continues                                                                                                                                                                                                                               continues
## present                                                                                                                                                                                                                                   present
## variations                                                                                                                                                                                                                             variations
## averages                                                                                                                                                                                                                                 averages
## duration                                                                                                                                                                                                                                 duration
## wind                                                                                                                                                                                                                                         wind
## associated                                                                                                                                                                                                                             associated
## atmosphere                                                                                                                                                                                                                             atmosphere
## circulation                                                                                                                                                                                                                           circulation
## flow                                                                                                                                                                                                                                         flow
## good                                                                                                                                                                                                                                         good
## long                                                                                                                                                                                                                                         long
## season                                                                                                                                                                                                                                     season
## agricultural                                                                                                                                                                                                                         agricultural
## drought                                                                                                                                                                                                                                   drought
## emergency                                                                                                                                                                                                                               emergency
## november                                                                                                                                                                                                                                 november
## resulting                                                                                                                                                                                                                               resulting
## locations                                                                                                                                                                                                                               locations
## record                                                                                                                                                                                                                                     record
## recorded                                                                                                                                                                                                                                 recorded
## average                                                                                                                                                                                                                                   average
## current                                                                                                                                                                                                                                   current
## environment                                                                                                                                                                                                                           environment
## trends                                                                                                                                                                                                                                     trends
## summarize                                                                                                                                                                                                                               summarize
## check                                                                                                                                                                                                                                       check
## oscillation                                                                                                                                                                                                                           oscillation
## effect                                                                                                                                                                                                                                     effect
## ability                                                                                                                                                                                                                                   ability
## species                                                                                                                                                                                                                                   species
## landuse                                                                                                                                                                                                                                   landuse
## already                                                                                                                                                                                                                                   already
## developed                                                                                                                                                                                                                               developed
## creative                                                                                                                                                                                                                                 creative
## affect                                                                                                                                                                                                                                     affect
## nature’s                                                                                                                                                                                                                                 nature’s
## addressing                                                                                                                                                                                                                             addressing
## growing                                                                                                                                                                                                                                   growing
## transition                                                                                                                                                                                                                             transition
## instead                                                                                                                                                                                                                                   instead
## ways                                                                                                                                                                                                                                         ways
## codes                                                                                                                                                                                                                                       codes
## quality                                                                                                                                                                                                                                   quality
## plant                                                                                                                                                                                                                                       plant
## led                                                                                                                                                                                                                                           led
## introduction                                                                                                                                                                                                                         introduction
## brief                                                                                                                                                                                                                                       brief
## description                                                                                                                                                                                                                           description
## economically                                                                                                                                                                                                                         economically
## offers                                                                                                                                                                                                                                     offers
## due                                                                                                                                                                                                                                           due
## especially                                                                                                                                                                                                                             especially
## intergovernmental                                                                                                                                                                                                               intergovernmental
## panel                                                                                                                                                                                                                                       panel
## pathways                                                                                                                                                                                                                                 pathways
## required                                                                                                                                                                                                                                 required
## border                                                                                                                                                                                                                                     border
## rocky                                                                                                                                                                                                                                       rocky
## authorities                                                                                                                                                                                                                           authorities
## census                                                                                                                                                                                                                                     census
## ecosystems                                                                                                                                                                                                                             ecosystems
## geopolitical                                                                                                                                                                                                                         geopolitical
## macroclimate                                                                                                                                                                                                                         macroclimate
## municipalities                                                                                                                                                                                                                     municipalities
## school                                                                                                                                                                                                                                     school
## subdivisions                                                                                                                                                                                                                         subdivisions
## zones                                                                                                                                                                                                                                       zones
## ages                                                                                                                                                                                                                                         ages
## depending                                                                                                                                                                                                                               depending
## fewer                                                                                                                                                                                                                                       fewer
## migration                                                                                                                                                                                                                               migration
## senior                                                                                                                                                                                                                                     senior
## cities                                                                                                                                                                                                                                     cities
## mostly                                                                                                                                                                                                                                     mostly
## nation                                                                                                                                                                                                                                     nation
## rural                                                                                                                                                                                                                                       rural
## towns                                                                                                                                                                                                                                       towns
## villages                                                                                                                                                                                                                                 villages
## cariboo                                                                                                                                                                                                                                   cariboo
## mining                                                                                                                                                                                                                                     mining
## plateau                                                                                                                                                                                                                                   plateau
## private                                                                                                                                                                                                                                   private
## remote                                                                                                                                                                                                                                     remote
## specific                                                                                                                                                                                                                                 specific
## tourism                                                                                                                                                                                                                                   tourism
## contributes                                                                                                                                                                                                                           contributes
## consent                                                                                                                                                                                                                                   consent
## examples                                                                                                                                                                                                                                 examples
## forward                                                                                                                                                                                                                                   forward
## free                                                                                                                                                                                                                                         free
## informed                                                                                                                                                                                                                                 informed
## much                                                                                                                                                                                                                                         much
## oldgrowth                                                                                                                                                                                                                               oldgrowth
## subsidies                                                                                                                                                                                                                               subsidies
## territory                                                                                                                                                                                                                               territory
## unceded                                                                                                                                                                                                                                   unceded
## accomplishments                                                                                                                                                                                                                   accomplishments
## agreements                                                                                                                                                                                                                             agreements
## backdrop                                                                                                                                                                                                                                 backdrop
## budget                                                                                                                                                                                                                                     budget
## election                                                                                                                                                                                                                                 election
## federal                                                                                                                                                                                                                                   federal
## liberal                                                                                                                                                                                                                                   liberal
## majority                                                                                                                                                                                                                                 majority
## making                                                                                                                                                                                                                                     making
## management                                                                                                                                                                                                                             management
## minority                                                                                                                                                                                                                                 minority
## responsibilities                                                                                                                                                                                                                 responsibilities
## reviewing                                                                                                                                                                                                                               reviewing
## speech                                                                                                                                                                                                                                     speech
## throne                                                                                                                                                                                                                                     throne
## equality                                                                                                                                                                                                                                 equality
## netzero                                                                                                                                                                                                                                   netzero
## ppm                                                                                                                                                                                                                                           ppm
## states                                                                                                                                                                                                                                     states
## contributions                                                                                                                                                                                                                       contributions
## c°                                                                                                                                                                                                                                             c°
## determined                                                                                                                                                                                                                             determined
## nationally                                                                                                                                                                                                                             nationally
## rising                                                                                                                                                                                                                                     rising
## ambitious                                                                                                                                                                                                                               ambitious
## balancing                                                                                                                                                                                                                               balancing
## considering                                                                                                                                                                                                                           considering
## effective                                                                                                                                                                                                                               effective
## monitoring                                                                                                                                                                                                                             monitoring
## participation                                                                                                                                                                                                                       participation
## public                                                                                                                                                                                                                                     public
## rapidly                                                                                                                                                                                                                                   rapidly
## risks                                                                                                                                                                                                                                       risks
## scientific                                                                                                                                                                                                                             scientific
## technological                                                                                                                                                                                                                       technological
## vulnerable                                                                                                                                                                                                                             vulnerable
## adapting                                                                                                                                                                                                                                 adapting
## advantage                                                                                                                                                                                                                               advantage
## job                                                                                                                                                                                                                                           job
## pricing                                                                                                                                                                                                                                   pricing
## waste                                                                                                                                                                                                                                       waste
## economics                                                                                                                                                                                                                               economics
## low                                                                                                                                                                                                                                           low
## negative                                                                                                                                                                                                                                 negative
## partnerships                                                                                                                                                                                                                         partnerships
## consumer                                                                                                                                                                                                                                 consumer
## fossil                                                                                                                                                                                                                                     fossil
## introduced                                                                                                                                                                                                                             introduced
## lower                                                                                                                                                                                                                                       lower
## revenue                                                                                                                                                                                                                                   revenue
## efficient                                                                                                                                                                                                                               efficient
## electric                                                                                                                                                                                                                                 electric
## existing                                                                                                                                                                                                                                 existing
## old                                                                                                                                                                                                                                           old
## retrofitting                                                                                                                                                                                                                         retrofitting
## direct                                                                                                                                                                                                                                     direct
## obvious                                                                                                                                                                                                                                   obvious
## quest                                                                                                                                                                                                                                       quest
## take                                                                                                                                                                                                                                         take
## towards                                                                                                                                                                                                                                   towards
## factors                                                                                                                                                                                                                                   factors
## many                                                                                                                                                                                                                                         many
## clouds                                                                                                                                                                                                                                     clouds
## conditions                                                                                                                                                                                                                             conditions
## daily                                                                                                                                                                                                                                       daily
## direction                                                                                                                                                                                                                               direction
## extremes                                                                                                                                                                                                                                 extremes
## intensity                                                                                                                                                                                                                               intensity
## like                                                                                                                                                                                                                                         like
## normal                                                                                                                                                                                                                                     normal
## place                                                                                                                                                                                                                                       place
## pressure                                                                                                                                                                                                                                 pressure
## cycle                                                                                                                                                                                                                                       cycle
## highpressure                                                                                                                                                                                                                         highpressure
## influence                                                                                                                                                                                                                               influence
## influenced                                                                                                                                                                                                                             influenced
## largescale                                                                                                                                                                                                                             largescale
## maritime                                                                                                                                                                                                                                 maritime
## niño                                                                                                                                                                                                                                         niño
## small                                                                                                                                                                                                                                       small
## continental                                                                                                                                                                                                                           continental
## latitude                                                                                                                                                                                                                                 latitude
## moderate                                                                                                                                                                                                                                 moderate
## plains                                                                                                                                                                                                                                     plains
## plateaus                                                                                                                                                                                                                                 plateaus
## southern                                                                                                                                                                                                                                 southern
## varies                                                                                                                                                                                                                                     varies
## activity                                                                                                                                                                                                                                 activity
## arctic                                                                                                                                                                                                                                     arctic
## early                                                                                                                                                                                                                                       early
## largest                                                                                                                                                                                                                                   largest
## snow                                                                                                                                                                                                                                         snow
## burning                                                                                                                                                                                                                                   burning
## day                                                                                                                                                                                                                                           day
## fertile                                                                                                                                                                                                                                   fertile
## fire                                                                                                                                                                                                                                         fire
## frequency                                                                                                                                                                                                                               frequency
## human                                                                                                                                                                                                                                       human
## impact                                                                                                                                                                                                                                     impact
## one                                                                                                                                                                                                                                           one
## prairie                                                                                                                                                                                                                                   prairie
## rain                                                                                                                                                                                                                                         rain
## river                                                                                                                                                                                                                                       river
## state                                                                                                                                                                                                                                       state
## sumas                                                                                                                                                                                                                                       sumas
## values                                                                                                                                                                                                                                     values
## december                                                                                                                                                                                                                                 december
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf
## variability                                                                                                                                                                                                                           variability
## drier                                                                                                                                                                                                                                       drier
## last                                                                                                                                                                                                                                         last
## systemic                                                                                                                                                                                                                                 systemic
## maps                                                                                                                                                                                                                                         maps
## material                                                                                                                                                                                                                                 material
## expectations                                                                                                                                                                                                                         expectations
## module                                                                                                                                                                                                                                     module
## notes                                                                                                                                                                                                                                       notes
## slide                                                                                                                                                                                                                                       slide
## longterm                                                                                                                                                                                                                                 longterm
## oceans                                                                                                                                                                                                                                     oceans
## stabilize                                                                                                                                                                                                                               stabilize
## acidic                                                                                                                                                                                                                                     acidic
## habitat                                                                                                                                                                                                                                   habitat
## adaptive                                                                                                                                                                                                                                 adaptive
## vulnerabilities                                                                                                                                                                                                                   vulnerabilities
## pages                                                                                                                                                                                                                                       pages
## necessary                                                                                                                                                                                                                               necessary
## themes                                                                                                                                                                                                                                     themes
## wetlands                                                                                                                                                                                                                                 wetlands
## across                                                                                                                                                                                                                                     across
## often                                                                                                                                                                                                                                       often
## populations                                                                                                                                                                                                                           populations
## representative                                                                                                                                                                                                                     representative
## ministry                                                                                                                                                                                                                                 ministry
## reconciliation                                                                                                                                                                                                                     reconciliation
## sources                                                                                                                                                                                                                                   sources
## youth                                                                                                                                                                                                                                       youth
## cleanenergy                                                                                                                                                                                                                           cleanenergy
## employment                                                                                                                                                                                                                             employment
## force                                                                                                                                                                                                                                       force
## remove                                                                                                                                                                                                                                     remove
## resource                                                                                                                                                                                                                                 resource
## soil                                                                                                                                                                                                                                         soil
## storage                                                                                                                                                                                                                                   storage
## store                                                                                                                                                                                                                                       store
## timber                                                                                                                                                                                                                                     timber
## farms                                                                                                                                                                                                                                       farms
## flooded                                                                                                                                                                                                                                   flooded
## fraser                                                                                                                                                                                                                                     fraser
## legislation                                                                                                                                                                                                                           legislation
## manure                                                                                                                                                                                                                                     manure
## valley                                                                                                                                                                                                                                     valley
## flood                                                                                                                                                                                                                                       flood
## preserve                                                                                                                                                                                                                                 preserve
## resources                                                                                                                                                                                                                               resources
## bold                                                                                                                                                                                                                                         bold
## exists                                                                                                                                                                                                                                     exists
## invest                                                                                                                                                                                                                                     invest
## competing                                                                                                                                                                                                                               competing
## advice                                                                                                                                                                                                                                     advice
## meet                                                                                                                                                                                                                                         meet
## track                                                                                                                                                                                                                                       track
## causing                                                                                                                                                                                                                                   causing
## damage                                                                                                                                                                                                                                     damage
## protests                                                                                                                                                                                                                                 protests
## affordability                                                                                                                                                                                                                       affordability
## consider                                                                                                                                                                                                                                 consider
## council                                                                                                                                                                                                                                   council
## chiefs                                                                                                                                                                                                                                     chiefs
## continued                                                                                                                                                                                                                               continued
## ongoing                                                                                                                                                                                                                                   ongoing
## without                                                                                                                                                                                                                                   without
## rebuild                                                                                                                                                                                                                                   rebuild
## using                                                                                                                                                                                                                                       using
## list                                                                                                                                                                                                                                         list
## foster                                                                                                                                                                                                                                     foster
## …                                                                                                                                                                                                                                               …
## needed                                                                                                                                                                                                                                     needed
## conclusion                                                                                                                                                                                                                             conclusion
## cabinet                                                                                                                                                                                                                                   cabinet
## confidential                                                                                                                                                                                                                         confidential
## considerations                                                                                                                                                                                                                     considerations
## discussion                                                                                                                                                                                                                             discussion
## tool                                                                                                                                                                                                                                         tool
## vastly                                                                                                                                                                                                                                     vastly
## activities                                                                                                                                                                                                                             activities
## cause                                                                                                                                                                                                                                       cause
## cooperation                                                                                                                                                                                                                           cooperation
## greenhouse                                                                                                                                                                                                                             greenhouse
## humanrelated                                                                                                                                                                                                                         humanrelated
## lessen                                                                                                                                                                                                                                     lessen
## national                                                                                                                                                                                                                                 national
## outlined                                                                                                                                                                                                                                 outlined
## reported                                                                                                                                                                                                                                 reported
## signed                                                                                                                                                                                                                                     signed
## surface                                                                                                                                                                                                                                   surface
## alberta                                                                                                                                                                                                                                   alberta
## boreal                                                                                                                                                                                                                                     boreal
## coastline                                                                                                                                                                                                                               coastline
## rugged                                                                                                                                                                                                                                     rugged
## stretching                                                                                                                                                                                                                             stretching
## usa                                                                                                                                                                                                                                           usa
## categories                                                                                                                                                                                                                             categories
## distinct                                                                                                                                                                                                                                 distinct
## divided                                                                                                                                                                                                                                   divided
## divisions                                                                                                                                                                                                                               divisions
## numerous                                                                                                                                                                                                                                 numerous
## phsyiographic                                                                                                                                                                                                                       phsyiographic
## plus                                                                                                                                                                                                                                         plus
## similar                                                                                                                                                                                                                                   similar
## subareas                                                                                                                                                                                                                                 subareas
## useful                                                                                                                                                                                                                                     useful
## variety                                                                                                                                                                                                                                   variety
## aging                                                                                                                                                                                                                                       aging
## births                                                                                                                                                                                                                                     births
## deaths                                                                                                                                                                                                                                     deaths
## decrease                                                                                                                                                                                                                                 decrease
## interprovincial                                                                                                                                                                                                                   interprovincial
## now                                                                                                                                                                                                                                           now
## passed                                                                                                                                                                                                                                     passed
## populace                                                                                                                                                                                                                                 populace
## retire                                                                                                                                                                                                                                     retire
## shows                                                                                                                                                                                                                                       shows
## slightly                                                                                                                                                                                                                                 slightly
## stats                                                                                                                                                                                                                                       stats
## working                                                                                                                                                                                                                                   working
## age                                                                                                                                                                                                                                           age
## comprise                                                                                                                                                                                                                                 comprise
## least                                                                                                                                                                                                                                       least
## okanagan                                                                                                                                                                                                                                 okanagan
## reserves                                                                                                                                                                                                                                 reserves
## urban                                                                                                                                                                                                                                       urban
## younger                                                                                                                                                                                                                                   younger
## cover                                                                                                                                                                                                                                       cover
## culture                                                                                                                                                                                                                                   culture
## drivers                                                                                                                                                                                                                                   drivers
## iii                                                                                                                                                                                                                                           iii
## island                                                                                                                                                                                                                                     island
## kootenay                                                                                                                                                                                                                                 kootenay
## mainland                                                                                                                                                                                                                                 mainland
## nechako                                                                                                                                                                                                                                   nechako
## northeast                                                                                                                                                                                                                               northeast
## occur                                                                                                                                                                                                                                       occur
## occurs                                                                                                                                                                                                                                     occurs
## pipelines                                                                                                                                                                                                                               pipelines
## southwest                                                                                                                                                                                                                               southwest
## thompsonokanagan                                                                                                                                                                                                                 thompsonokanagan
## utilities                                                                                                                                                                                                                               utilities
## vancouver                                                                                                                                                                                                                               vancouver
## decreasing                                                                                                                                                                                                                             decreasing
## domestic                                                                                                                                                                                                                                 domestic
## emitting                                                                                                                                                                                                                                 emitting
## gross                                                                                                                                                                                                                                       gross
## hydro                                                                                                                                                                                                                                       hydro
## manufacturing                                                                                                                                                                                                                       manufacturing
## megatons                                                                                                                                                                                                                                 megatons
## product                                                                                                                                                                                                                                   product
## service                                                                                                                                                                                                                                   service
## acceptance                                                                                                                                                                                                                             acceptance
## access                                                                                                                                                                                                                                     access
## authority                                                                                                                                                                                                                               authority
## citizens                                                                                                                                                                                                                                 citizens
## creek                                                                                                                                                                                                                                       creek
## decisionmaking                                                                                                                                                                                                                     decisionmaking
## exercise                                                                                                                                                                                                                                 exercise
## expected                                                                                                                                                                                                                                 expected
## fairy                                                                                                                                                                                                                                       fairy
## gaslink                                                                                                                                                                                                                                   gaslink
## going                                                                                                                                                                                                                                       going
## landscape                                                                                                                                                                                                                               landscape
## pipeline                                                                                                                                                                                                                                 pipeline
## protest                                                                                                                                                                                                                                   protest
## protocol                                                                                                                                                                                                                                 protocol
## right                                                                                                                                                                                                                                       right
## undrip                                                                                                                                                                                                                                     undrip
## wet’suwet’en                                                                                                                                                                                                                         wet’suwet’en
## collaborating                                                                                                                                                                                                                       collaborating
## crisis”                                                                                                                                                                                                                                   crisis”
## focusing                                                                                                                                                                                                                                 focusing
## followed                                                                                                                                                                                                                                 followed
## formed                                                                                                                                                                                                                                     formed
## furthering                                                                                                                                                                                                                             furthering
## highlighted                                                                                                                                                                                                                           highlighted
## investing                                                                                                                                                                                                                               investing
## money                                                                                                                                                                                                                                       money
## ndp                                                                                                                                                                                                                                           ndp
## prepare                                                                                                                                                                                                                                   prepare
## prevention                                                                                                                                                                                                                             prevention
## resilient                                                                                                                                                                                                                               resilient
## set                                                                                                                                                                                                                                           set
## setting                                                                                                                                                                                                                                   setting
## wildfires                                                                                                                                                                                                                               wildfires
## “climate                                                                                                                                                                                                                                 “climate
## affecting                                                                                                                                                                                                                               affecting
## affirms                                                                                                                                                                                                                                   affirms
## assessment                                                                                                                                                                                                                             assessment
## call                                                                                                                                                                                                                                         call
## consumption                                                                                                                                                                                                                           consumption
## currently                                                                                                                                                                                                                               currently
## drives                                                                                                                                                                                                                                     drives
## exceed                                                                                                                                                                                                                                     exceed
## experts                                                                                                                                                                                                                                   experts
## fall                                                                                                                                                                                                                                         fall
## life                                                                                                                                                                                                                                         life
## likely                                                                                                                                                                                                                                     likely
## newest                                                                                                                                                                                                                                     newest
## reductions”                                                                                                                                                                                                                           reductions”
## responsible                                                                                                                                                                                                                           responsible
## special                                                                                                                                                                                                                                   special
## sustainability                                                                                                                                                                                                                     sustainability
## understanding                                                                                                                                                                                                                       understanding
## unless                                                                                                                                                                                                                                     unless
## update                                                                                                                                                                                                                                     update
## written                                                                                                                                                                                                                                   written
## “deep                                                                                                                                                                                                                                       “deep
## agreed                                                                                                                                                                                                                                     agreed
## binding                                                                                                                                                                                                                                   binding
## detailed                                                                                                                                                                                                                                 detailed
## legally                                                                                                                                                                                                                                   legally
## motivated                                                                                                                                                                                                                               motivated
## preferably                                                                                                                                                                                                                             preferably
## ratified                                                                                                                                                                                                                                 ratified
## sovereign                                                                                                                                                                                                                               sovereign
## submit                                                                                                                                                                                                                                     submit
## treaty                                                                                                                                                                                                                                     treaty
## available                                                                                                                                                                                                                               available
## aware                                                                                                                                                                                                                                       aware
## best                                                                                                                                                                                                                                         best
## diversifying                                                                                                                                                                                                                         diversifying
## economies                                                                                                                                                                                                                               economies
## efforts                                                                                                                                                                                                                                   efforts
## enacting                                                                                                                                                                                                                                 enacting
## evaluating                                                                                                                                                                                                                             evaluating
## financing                                                                                                                                                                                                                               financing
## guided                                                                                                                                                                                                                                     guided
## knowledge“                                                                                                                                                                                                                             knowledge“
## mobilizing                                                                                                                                                                                                                             mobilizing
## planning                                                                                                                                                                                                                                 planning
## programs                                                                                                                                                                                                                                 programs
## responses                                                                                                                                                                                                                               responses
## transparent                                                                                                                                                                                                                           transparent
## unfcc                                                                                                                                                                                                                                       unfcc
## vision“                                                                                                                                                                                                                                   vision“
## “                                                                                                                                                                                                                                               “
## “longterm                                                                                                                                                                                                                               “longterm
## cutting                                                                                                                                                                                                                                   cutting
## enhanced                                                                                                                                                                                                                                 enhanced
## families                                                                                                                                                                                                                                 families
## habitats                                                                                                                                                                                                                                 habitats
## household                                                                                                                                                                                                                               household
## innovating                                                                                                                                                                                                                             innovating
## original                                                                                                                                                                                                                                 original
## outlining                                                                                                                                                                                                                               outlining
## rebates                                                                                                                                                                                                                                   rebates
## respecting                                                                                                                                                                                                                             respecting
## submitted                                                                                                                                                                                                                               submitted
## bioeconomy                                                                                                                                                                                                                             bioeconomy
## climatechange                                                                                                                                                                                                                       climatechange
## collecting                                                                                                                                                                                                                             collecting
## cultivated                                                                                                                                                                                                                             cultivated
## data                                                                                                                                                                                                                                         data
## extend                                                                                                                                                                                                                                     extend
## fisheries                                                                                                                                                                                                                               fisheries
## globally                                                                                                                                                                                                                                 globally
## map                                                                                                                                                                                                                                           map
## preparedness                                                                                                                                                                                                                         preparedness
## purposes                                                                                                                                                                                                                                 purposes
## ready                                                                                                                                                                                                                                       ready
## released                                                                                                                                                                                                                                 released
## road                                                                                                                                                                                                                                         road
## targeted                                                                                                                                                                                                                                 targeted
## accelerator                                                                                                                                                                                                                           accelerator
## allow                                                                                                                                                                                                                                       allow
## capped                                                                                                                                                                                                                                     capped
## cumulatively                                                                                                                                                                                                                         cumulatively
## offered                                                                                                                                                                                                                                   offered
## proposals                                                                                                                                                                                                                               proposals
## reviewed                                                                                                                                                                                                                                 reviewed
## america                                                                                                                                                                                                                                   america
## applied                                                                                                                                                                                                                                   applied
## canadians                                                                                                                                                                                                                               canadians
## credit                                                                                                                                                                                                                                     credit
## fueltype                                                                                                                                                                                                                                 fueltype
## kind                                                                                                                                                                                                                                         kind
## metric                                                                                                                                                                                                                                     metric
## middleincome                                                                                                                                                                                                                         middleincome
## purchase                                                                                                                                                                                                                                 purchase
## rebated                                                                                                                                                                                                                                   rebated
## solution                                                                                                                                                                                                                                 solution
## starting                                                                                                                                                                                                                                 starting
## taxes                                                                                                                                                                                                                                       taxes
## ton                                                                                                                                                                                                                                           ton
## charging                                                                                                                                                                                                                                 charging
## deferring                                                                                                                                                                                                                               deferring
## electrifying                                                                                                                                                                                                                         electrifying
## expanding                                                                                                                                                                                                                               expanding
## installations                                                                                                                                                                                                                       installations
## passenger                                                                                                                                                                                                                               passenger
## previously                                                                                                                                                                                                                             previously
## promises                                                                                                                                                                                                                                 promises
## promoting                                                                                                                                                                                                                               promoting
## pump                                                                                                                                                                                                                                         pump
## subsidizing                                                                                                                                                                                                                           subsidizing
## vehicles                                                                                                                                                                                                                                 vehicles
## world                                                                                                                                                                                                                                       world
## zeroemission                                                                                                                                                                                                                         zeroemission
## competitively                                                                                                                                                                                                                       competitively
## final                                                                                                                                                                                                                                       final
## leader                                                                                                                                                                                                                                     leader
## move                                                                                                                                                                                                                                         move
## sections                                                                                                                                                                                                                                 sections
## rest                                                                                                                                                                                                                                         rest
## “inform                                                                                                                                                                                                                                   “inform
## ”                                                                                                                                                                                                                                               ”
## analyzing                                                                                                                                                                                                                               analyzing
## impacted                                                                                                                                                                                                                                 impacted
## inform                                                                                                                                                                                                                                     inform
## understand                                                                                                                                                                                                                             understand
## barometric                                                                                                                                                                                                                             barometric
## common                                                                                                                                                                                                                                     common
## difference                                                                                                                                                                                                                             difference
## distinguishing                                                                                                                                                                                                                     distinguishing
## hourly                                                                                                                                                                                                                                     hourly
## influences                                                                                                                                                                                                                             influences
## recognize                                                                                                                                                                                                                               recognize
## seasonally                                                                                                                                                                                                                             seasonally
## speed                                                                                                                                                                                                                                       speed
## start                                                                                                                                                                                                                                       start
## statistical                                                                                                                                                                                                                           statistical
## variabilities                                                                                                                                                                                                                       variabilities
## vary                                                                                                                                                                                                                                         vary
## alternating                                                                                                                                                                                                                           alternating
## canada‘s                                                                                                                                                                                                                                 canada‘s
## climatic                                                                                                                                                                                                                                 climatic
## frostfree                                                                                                                                                                                                                               frostfree
## lots                                                                                                                                                                                                                                         lots
## lowpressure                                                                                                                                                                                                                           lowpressure
## moderating                                                                                                                                                                                                                             moderating
## multiyear                                                                                                                                                                                                                               multiyear
## periods                                                                                                                                                                                                                                   periods
## prevailing                                                                                                                                                                                                                             prevailing
## rainfall                                                                                                                                                                                                                                 rainfall
## seasonal                                                                                                                                                                                                                                 seasonal
## warmest                                                                                                                                                                                                                                   warmest
## west                                                                                                                                                                                                                                         west
## winds                                                                                                                                                                                                                                       winds
## basins                                                                                                                                                                                                                                     basins
## block                                                                                                                                                                                                                                       block
## columbia                                                                                                                                                                                                                                 columbia
## coming                                                                                                                                                                                                                                     coming
## distance                                                                                                                                                                                                                                 distance
## distribute                                                                                                                                                                                                                             distribute
## eastern                                                                                                                                                                                                                                   eastern
## elevation                                                                                                                                                                                                                               elevation
## exposure                                                                                                                                                                                                                                 exposure
## gradient                                                                                                                                                                                                                                 gradient
## great                                                                                                                                                                                                                                       great
## islands                                                                                                                                                                                                                                   islands
## marine                                                                                                                                                                                                                                     marine
## masses                                                                                                                                                                                                                                     masses
## mild                                                                                                                                                                                                                                         mild
## northsouth                                                                                                                                                                                                                             northsouth
## parallel                                                                                                                                                                                                                                 parallel
## prairies                                                                                                                                                                                                                                 prairies
## separated                                                                                                                                                                                                                               separated
## afternoons                                                                                                                                                                                                                             afternoons
## brings                                                                                                                                                                                                                                     brings
## driest                                                                                                                                                                                                                                     driest
## dryer                                                                                                                                                                                                                                       dryer
## elevations                                                                                                                                                                                                                             elevations
## experiences                                                                                                                                                                                                                           experiences
## generating                                                                                                                                                                                                                             generating
## higher                                                                                                                                                                                                                                     higher
## rainshadow                                                                                                                                                                                                                             rainshadow
## range                                                                                                                                                                                                                                       range
## side                                                                                                                                                                                                                                         side
## slopes                                                                                                                                                                                                                                     slopes
## southcentral                                                                                                                                                                                                                         southcentral
## spring                                                                                                                                                                                                                                     spring
## thunderstorm                                                                                                                                                                                                                         thunderstorm
## valleybottoms                                                                                                                                                                                                                       valleybottoms
## valleys                                                                                                                                                                                                                                   valleys
## westerly                                                                                                                                                                                                                                 westerly
## wet                                                                                                                                                                                                                                           wet
## days                                                                                                                                                                                                                                         days
## declared                                                                                                                                                                                                                                 declared
## dramatic                                                                                                                                                                                                                                 dramatic
## history                                                                                                                                                                                                                                   history
## lives                                                                                                                                                                                                                                       lives
## longest                                                                                                                                                                                                                                   longest
## recordbreaking                                                                                                                                                                                                                     recordbreaking
## waves                                                                                                                                                                                                                                       waves
## wild                                                                                                                                                                                                                                         wild
## worst                                                                                                                                                                                                                                       worst
## floods                                                                                                                                                                                                                                     floods
## george                                                                                                                                                                                                                                     george
## harbour                                                                                                                                                                                                                                   harbour
## hot                                                                                                                                                                                                                                           hot
## june                                                                                                                                                                                                                                         june
## lytton                                                                                                                                                                                                                                     lytton
## prince                                                                                                                                                                                                                                     prince
## third                                                                                                                                                                                                                                       third
## victoria                                                                                                                                                                                                                                 victoria
## anything                                                                                                                                                                                                                                 anything
## etal                                                                                                                                                                                                                                         etal
## glaciers                                                                                                                                                                                                                                 glaciers
## mention                                                                                                                                                                                                                                   mention
## moisture                                                                                                                                                                                                                                 moisture
## page                                                                                                                                                                                                                                         page
## spittlehouse                                                                                                                                                                                                                         spittlehouse
## normals                                                                                                                                                                                                                                   normals
## compared                                                                                                                                                                                                                                 compared
## norm                                                                                                                                                                                                                                         norm
## year                                                                                                                                                                                                                                         year
## max                                                                                                                                                                                                                                           max
## min                                                                                                                                                                                                                                           min
## norms                                                                                                                                                                                                                                       norms
## precip                                                                                                                                                                                                                                     precip
## temp                                                                                                                                                                                                                                         temp
## differ                                                                                                                                                                                                                                     differ
## mean                                                                                                                                                                                                                                         mean
## planetary                                                                                                                                                                                                                               planetary
## leading                                                                                                                                                                                                                                   leading
## jurisdiction                                                                                                                                                                                                                         jurisdiction
## actuaries                                                                                                                                                                                                                               actuaries
## index                                                                                                                                                                                                                                       index
## asterix                                                                                                                                                                                                                                   asterix
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                                                                         httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                                                                                               httpsdatapacificclimateorgportaldownscaledgcmsmap
## strength                                                                                                                                                                                                                                 strength
## forecast                                                                                                                                                                                                                                 forecast
## modeled                                                                                                                                                                                                                                   modeled
## prediction                                                                                                                                                                                                                             prediction
## projection                                                                                                                                                                                                                             projection
## see                                                                                                                                                                                                                                           see
## httpstwittercomthomasforbcstatuss                                                                                                                                                                               httpstwittercomthomasforbcstatuss
## amount                                                                                                                                                                                                                                     amount
## drying                                                                                                                                                                                                                                     drying
## melt                                                                                                                                                                                                                                         melt
## persistence                                                                                                                                                                                                                           persistence
## snowpack                                                                                                                                                                                                                                 snowpack
## get                                                                                                                                                                                                                                           get
## hotter                                                                                                                                                                                                                                     hotter
## summers                                                                                                                                                                                                                                   summers
## trend                                                                                                                                                                                                                                       trend
## months                                                                                                                                                                                                                                     months
## decadal                                                                                                                                                                                                                                   decadal
## american                                                                                                                                                                                                                                 american
## lifetime                                                                                                                                                                                                                                 lifetime
## pattern                                                                                                                                                                                                                                   pattern
## amplified                                                                                                                                                                                                                               amplified
## coincided                                                                                                                                                                                                                               coincided
## cycles                                                                                                                                                                                                                                     cycles
## series                                                                                                                                                                                                                                     series
## imbalance                                                                                                                                                                                                                               imbalance
## increases                                                                                                                                                                                                                               increases
## keeping                                                                                                                                                                                                                                   keeping
## relative                                                                                                                                                                                                                                 relative
## transfer                                                                                                                                                                                                                                 transfer
## •                                                                                                                                                                                                                                               •
## affects                                                                                                                                                                                                                                   affects
## heating                                                                                                                                                                                                                                   heating
## slowly                                                                                                                                                                                                                                     slowly
## cumulative                                                                                                                                                                                                                             cumulative
## deforestation                                                                                                                                                                                                                       deforestation
## esp                                                                                                                                                                                                                                           esp
## march                                                                                                                                                                                                                                       march
## nitrous                                                                                                                                                                                                                                   nitrous
## oxide                                                                                                                                                                                                                                       oxide
## httpsbritishcolumbiacombcweatherbc                                                                                                                                                                             httpsbritishcolumbiacombcweatherbc
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                                                                                 httpspicsuviccaresearchclimatehealthcovidbritishcolumbia
## httpsopentextbccageographychapterclimateenvironmentbc                                                                                                                                       httpsopentextbccageographychapterclimateenvironmentbc
## httpsclimatechangecanadacabritishcolumbia                                                                                                                                                               httpsclimatechangecanadacabritishcolumbia
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                                                           httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia
## guiding                                                                                                                                                                                                                                   guiding
## makers                                                                                                                                                                                                                                     makers
## presented                                                                                                                                                                                                                               presented
## scientists                                                                                                                                                                                                                             scientists
## considers                                                                                                                                                                                                                               considers
## bc’                                                                                                                                                                                                                                           bc’
## depends                                                                                                                                                                                                                                   depends
## grasslands                                                                                                                                                                                                                             grasslands
## healthier                                                                                                                                                                                                                               healthier
## matter                                                                                                                                                                                                                                     matter
## nature                                                                                                                                                                                                                                     nature
## particulate                                                                                                                                                                                                                           particulate
## retention                                                                                                                                                                                                                               retention
## shrubs                                                                                                                                                                                                                                     shrubs
## stored                                                                                                                                                                                                                                     stored
## zone                                                                                                                                                                                                                                         zone
## ‘beautiful                                                                                                                                                                                                                             ‘beautiful
## accessible                                                                                                                                                                                                                             accessible
## distributed                                                                                                                                                                                                                           distributed
## excluded                                                                                                                                                                                                                                 excluded
## inclusive                                                                                                                                                                                                                               inclusive
## inequality                                                                                                                                                                                                                             inequality
## multiple                                                                                                                                                                                                                                 multiple
## reductions                                                                                                                                                                                                                             reductions
## spreading                                                                                                                                                                                                                               spreading
## thus                                                                                                                                                                                                                                         thus
## consultation                                                                                                                                                                                                                         consultation
## diesel                                                                                                                                                                                                                                     diesel
## generators                                                                                                                                                                                                                             generators
## relations                                                                                                                                                                                                                               relations
## reliance                                                                                                                                                                                                                                 reliance
## develop                                                                                                                                                                                                                                   develop
## environments                                                                                                                                                                                                                         environments
## explore                                                                                                                                                                                                                                   explore
## inspired                                                                                                                                                                                                                                 inspired
## lowemission                                                                                                                                                                                                                           lowemission
## researchers                                                                                                                                                                                                                           researchers
## revitalized                                                                                                                                                                                                                           revitalized
## skilled                                                                                                                                                                                                                                   skilled
## smooth                                                                                                                                                                                                                                     smooth
## student                                                                                                                                                                                                                                   student
## chance                                                                                                                                                                                                                                     chance
## cycling                                                                                                                                                                                                                                   cycling
## diversification                                                                                                                                                                                                                   diversification
## managed                                                                                                                                                                                                                                   managed
## newly                                                                                                                                                                                                                                       newly
## nutrient                                                                                                                                                                                                                                 nutrient
## preservation                                                                                                                                                                                                                         preservation
## purification                                                                                                                                                                                                                         purification
## recreation                                                                                                                                                                                                                             recreation
## rethink                                                                                                                                                                                                                                   rethink
## spirituality                                                                                                                                                                                                                         spirituality
## stewardship                                                                                                                                                                                                                           stewardship
## tissue                                                                                                                                                                                                                                     tissue
## wildlife                                                                                                                                                                                                                                 wildlife
## woody                                                                                                                                                                                                                                       woody
## abound                                                                                                                                                                                                                                     abound
## contribution                                                                                                                                                                                                                         contribution
## ensures                                                                                                                                                                                                                                   ensures
## farming                                                                                                                                                                                                                                   farming
## importing                                                                                                                                                                                                                               importing
## preserving                                                                                                                                                                                                                             preserving
## ranching                                                                                                                                                                                                                                 ranching
## rebuilt                                                                                                                                                                                                                                   rebuilt
## recently                                                                                                                                                                                                                                 recently
## reduces                                                                                                                                                                                                                                   reduces
## reserve                                                                                                                                                                                                                                   reserve
## destructive                                                                                                                                                                                                                           destructive
## environmentally                                                                                                                                                                                                                   environmentally
## preparing                                                                                                                                                                                                                               preparing
## reconstruct                                                                                                                                                                                                                           reconstruct
## thrive                                                                                                                                                                                                                                     thrive
## zoning                                                                                                                                                                                                                                     zoning
## cite                                                                                                                                                                                                                                         cite
## cleaning                                                                                                                                                                                                                                 cleaning
## covid                                                                                                                                                                                                                                       covid
## greatly                                                                                                                                                                                                                                   greatly
## lockdown                                                                                                                                                                                                                                 lockdown
## looking                                                                                                                                                                                                                                   looking
## markets                                                                                                                                                                                                                                   markets
## pays                                                                                                                                                                                                                                         pays
## polluter                                                                                                                                                                                                                                 polluter
## principle                                                                                                                                                                                                                               principle
## providing                                                                                                                                                                                                                               providing
## reassessing                                                                                                                                                                                                                           reassessing
## reevaluate                                                                                                                                                                                                                             reevaluate
## something                                                                                                                                                                                                                               something
## try                                                                                                                                                                                                                                           try
## interests                                                                                                                                                                                                                               interests
## involves                                                                                                                                                                                                                                 involves
## myriad                                                                                                                                                                                                                                     myriad
## detractors                                                                                                                                                                                                                             detractors
## measure                                                                                                                                                                                                                                   measure
## supporters                                                                                                                                                                                                                             supporters
## highlight                                                                                                                                                                                                                               highlight
## might                                                                                                                                                                                                                                       might
## mitigated                                                                                                                                                                                                                               mitigated
## overcome                                                                                                                                                                                                                                 overcome
## ided                                                                                                                                                                                                                                         ided
## discuss                                                                                                                                                                                                                                   discuss
## displaced                                                                                                                                                                                                                               displaced
## communicate                                                                                                                                                                                                                           communicate
## inspire                                                                                                                                                                                                                                   inspire
## accepting                                                                                                                                                                                                                               accepting
## comes                                                                                                                                                                                                                                       comes
## continuing                                                                                                                                                                                                                             continuing
## directions                                                                                                                                                                                                                             directions
## emit                                                                                                                                                                                                                                         emit
## expensive                                                                                                                                                                                                                               expensive
## inherent                                                                                                                                                                                                                                 inherent
## paths                                                                                                                                                                                                                                       paths
## problem                                                                                                                                                                                                                                   problem
## relying                                                                                                                                                                                                                                   relying
## researching                                                                                                                                                                                                                           researching
## simply                                                                                                                                                                                                                                     simply
## source                                                                                                                                                                                                                                     source
## suggest                                                                                                                                                                                                                                   suggest
## timelines                                                                                                                                                                                                                               timelines
## unproven                                                                                                                                                                                                                                 unproven
## concerns                                                                                                                                                                                                                                 concerns
## give                                                                                                                                                                                                                                         give
## legitimate                                                                                                                                                                                                                             legitimate
## oceans”                                                                                                                                                                                                                                   oceans”
## places                                                                                                                                                                                                                                     places
## protect                                                                                                                                                                                                                                   protect
## raised                                                                                                                                                                                                                                     raised
## shellfish                                                                                                                                                                                                                               shellfish
## shells                                                                                                                                                                                                                                     shells
## shortterm                                                                                                                                                                                                                               shortterm
## “irreversible                                                                                                                                                                                                                       “irreversible
## advisory                                                                                                                                                                                                                                 advisory
## advocating                                                                                                                                                                                                                             advocating
## businesses                                                                                                                                                                                                                             businesses
## consumers                                                                                                                                                                                                                               consumers
## disabled                                                                                                                                                                                                                                 disabled
## individual                                                                                                                                                                                                                             individual
## member                                                                                                                                                                                                                                     member
## missing                                                                                                                                                                                                                                   missing
## organizations                                                                                                                                                                                                                       organizations
## poverty                                                                                                                                                                                                                                   poverty
## seeking                                                                                                                                                                                                                                   seeking
## accepted                                                                                                                                                                                                                                 accepted
## declaration                                                                                                                                                                                                                           declaration
## departments                                                                                                                                                                                                                           departments
## drip                                                                                                                                                                                                                                         drip
## engagement                                                                                                                                                                                                                             engagement
## forms                                                                                                                                                                                                                                       forms
## governance                                                                                                                                                                                                                             governance
## hereditary                                                                                                                                                                                                                             hereditary
## indian                                                                                                                                                                                                                                     indian
## lands                                                                                                                                                                                                                                       lands
## peoples                                                                                                                                                                                                                                   peoples
## personnel                                                                                                                                                                                                                               personnel
## protocols                                                                                                                                                                                                                               protocols
## reservation                                                                                                                                                                                                                           reservation
## situated                                                                                                                                                                                                                                 situated
## territorial                                                                                                                                                                                                                           territorial
## treaties                                                                                                                                                                                                                                 treaties
## decline                                                                                                                                                                                                                                   decline
## except                                                                                                                                                                                                                                     except
## expansion                                                                                                                                                                                                                               expansion
## general                                                                                                                                                                                                                                   general
## greenenergy                                                                                                                                                                                                                           greenenergy
## retirements                                                                                                                                                                                                                           retirements
## socioeconomic                                                                                                                                                                                                                       socioeconomic
## absorption                                                                                                                                                                                                                             absorption
## ecoservices                                                                                                                                                                                                                           ecoservices
## insect                                                                                                                                                                                                                                     insect
## pause                                                                                                                                                                                                                                       pause
## stressed                                                                                                                                                                                                                                 stressed
## system                                                                                                                                                                                                                                     system
## techniques                                                                                                                                                                                                                             techniques
## uncertainty                                                                                                                                                                                                                           uncertainty
## unsustainable                                                                                                                                                                                                                       unsustainable
## addressed                                                                                                                                                                                                                               addressed
## alternate                                                                                                                                                                                                                               alternate
## became                                                                                                                                                                                                                                     became
## grown                                                                                                                                                                                                                                       grown
## locally                                                                                                                                                                                                                                   locally
## prone                                                                                                                                                                                                                                       prone
## remain                                                                                                                                                                                                                                     remain
## toxins                                                                                                                                                                                                                                     toxins
## adaption                                                                                                                                                                                                                                 adaption
## anew                                                                                                                                                                                                                                         anew
## considered                                                                                                                                                                                                                             considered
## expense                                                                                                                                                                                                                                   expense
## farm                                                                                                                                                                                                                                         farm
## income                                                                                                                                                                                                                                     income
## infrastructure”                                                                                                                                                                                                                   infrastructure”
## lost                                                                                                                                                                                                                                         lost
## policies”                                                                                                                                                                                                                               policies”
## require                                                                                                                                                                                                                                   require
## results                                                                                                                                                                                                                                   results
## “ambitious                                                                                                                                                                                                                             “ambitious
## “systemic                                                                                                                                                                                                                               “systemic
## comparisons                                                                                                                                                                                                                           comparisons
## previous                                                                                                                                                                                                                                 previous
## conclusions                                                                                                                                                                                                                           conclusions
## summaryconclude                                                                                                                                                                                                                   summaryconclude
## parts                                                                                                                                                                                                                                       parts
## open                                                                                                                                                                                                                                         open
## paragraph                                                                                                                                                                                                                               paragraph
## parti                                                                                                                                                                                                                                       parti
## along                                                                                                                                                                                                                                       along
## demographic                                                                                                                                                                                                                           demographic
## varying                                                                                                                                                                                                                                   varying
## actor                                                                                                                                                                                                                                       actor
## pick                                                                                                                                                                                                                                         pick
## fulfillment                                                                                                                                                                                                                           fulfillment
## identification                                                                                                                                                                                                                     identification
## issue                                                                                                                                                                                                                                       issue
## suggested                                                                                                                                                                                                                               suggested
## actionoriented                                                                                                                                                                                                                     actionoriented
## inclusion                                                                                                                                                                                                                               inclusion
## practical                                                                                                                                                                                                                               practical
## rationales                                                                                                                                                                                                                             rationales
## term                                                                                                                                                                                                                                         term
## think                                                                                                                                                                                                                                       think
## underway                                                                                                                                                                                                                                 underway
## factor                                                                                                                                                                                                                                     factor
## consideration                                                                                                                                                                                                                       consideration
## number                                                                                                                                                                                                                                     number
## order                                                                                                                                                                                                                                       order
## posed                                                                                                                                                                                                                                       posed
## strategic                                                                                                                                                                                                                               strategic
## avoid                                                                                                                                                                                                                                       avoid
## linealigned                                                                                                                                                                                                                           linealigned
## sake                                                                                                                                                                                                                                         sake
## sure                                                                                                                                                                                                                                         sure
## thought                                                                                                                                                                                                                                   thought
## wise                                                                                                                                                                                                                                         wise
## appropriate                                                                                                                                                                                                                           appropriate
## estate                                                                                                                                                                                                                                     estate
## extraction                                                                                                                                                                                                                             extraction
## real                                                                                                                                                                                                                                         real
## restore                                                                                                                                                                                                                                   restore
## valuable                                                                                                                                                                                                                                 valuable
## assure                                                                                                                                                                                                                                     assure
## fair                                                                                                                                                                                                                                         fair
## finance                                                                                                                                                                                                                                   finance
## industrial                                                                                                                                                                                                                             industrial
## just                                                                                                                                                                                                                                         just
## supportive                                                                                                                                                                                                                             supportive
## green                                                                                                                                                                                                                                       green
## process                                                                                                                                                                                                                                   process
## relationships                                                                                                                                                                                                                       relationships
## together                                                                                                                                                                                                                                 together
## carbonfree                                                                                                                                                                                                                             carbonfree
## design                                                                                                                                                                                                                                     design
## engineer                                                                                                                                                                                                                                 engineer
## innovate                                                                                                                                                                                                                                 innovate
## maintain                                                                                                                                                                                                                                 maintain
## produce                                                                                                                                                                                                                                   produce
## train                                                                                                                                                                                                                                       train
## transitioning                                                                                                                                                                                                                       transitioning
## young                                                                                                                                                                                                                                       young
## capture                                                                                                                                                                                                                                   capture
## deciduous                                                                                                                                                                                                                               deciduous
## diverse                                                                                                                                                                                                                                   diverse
## effectively                                                                                                                                                                                                                           effectively
## firebreak                                                                                                                                                                                                                               firebreak
## functions                                                                                                                                                                                                                               functions
## mills                                                                                                                                                                                                                                       mills
## refit                                                                                                                                                                                                                                       refit
## smaller                                                                                                                                                                                                                                   smaller
## tree                                                                                                                                                                                                                                         tree
## compliance                                                                                                                                                                                                                             compliance
## continuation                                                                                                                                                                                                                         continuation
## enforcement                                                                                                                                                                                                                           enforcement
## equipment                                                                                                                                                                                                                               equipment
## gaspowered                                                                                                                                                                                                                             gaspowered
## innovations                                                                                                                                                                                                                           innovations
## replace                                                                                                                                                                                                                                   replace
## demolishing                                                                                                                                                                                                                           demolishing
## don’t                                                                                                                                                                                                                                       don’t
## fireresiliency                                                                                                                                                                                                                     fireresiliency
## focus                                                                                                                                                                                                                                       focus
## restoring                                                                                                                                                                                                                               restoring
## risk                                                                                                                                                                                                                                         risk
## safe                                                                                                                                                                                                                                         safe
## structures                                                                                                                                                                                                                             structures
## updating                                                                                                                                                                                                                                 updating
## exhaustive                                                                                                                                                                                                                             exhaustive
## ‘lens’                                                                                                                                                                                                                                     ‘lens’
## sense                                                                                                                                                                                                                                       sense
## urgency                                                                                                                                                                                                                                   urgency
## ultimate                                                                                                                                                                                                                                 ultimate
## initiating                                                                                                                                                                                                                             initiating
## lead                                                                                                                                                                                                                                         lead
## market                                                                                                                                                                                                                                     market
## initial                                                                                                                                                                                                                                   initial
## outline                                                                                                                                                                                                                                   outline
## refer                                                                                                                                                                                                                                       refer
## difference’                                                                                                                                                                                                                           difference’
## know                                                                                                                                                                                                                                         know
## recognizing                                                                                                                                                                                                                           recognizing
## ‘make                                                                                                                                                                                                                                       ‘make
## honour                                                                                                                                                                                                                                     honour
## reason                                                                                                                                                                                                                                     reason
## reports                                                                                                                                                                                                                                   reports
## taking                                                                                                                                                                                                                                     taking
## british                                                                                                                                                                                                                                   british
## business                                                                                                                                                                                                                                 business
## columbians                                                                                                                                                                                                                             columbians
## ensured                                                                                                                                                                                                                                   ensured
## stewarding                                                                                                                                                                                                                             stewarding
## unique                                                                                                                                                                                                                                     unique
## vibrant                                                                                                                                                                                                                                   vibrant
##                                                                                                                          freq
## climate                                                                                                                    67
## emissions                                                                                                                  41
## bc’s                                                                                                                       25
## will                                                                                                                       23
## change                                                                                                                     22
## reduce                                                                                                                     21
## carbon                                                                                                                     17
## help                                                                                                                       17
## regions                                                                                                                    16
## ghg                                                                                                                        16
## action                                                                                                                     15
## future                                                                                                                     15
## indigenous                                                                                                                 15
## challenges                                                                                                                 15
## weather                                                                                                                    15
## temperature                                                                                                                14
## also                                                                                                                       14
## industry                                                                                                                   14
## opportunity                                                                                                                14
## changing                                                                                                                   13
## social                                                                                                                     13
## economic                                                                                                                   13
## building                                                                                                                   13
## opportunities                                                                                                              13
## recommendations                                                                                                            12
## new                                                                                                                        12
## mitigation                                                                                                                 12
## gas                                                                                                                        11
## including                                                                                                                  11
## paris                                                                                                                      11
## provincial                                                                                                                 11
## canada’s                                                                                                                   11
## land                                                                                                                       11
## development                                                                                                                11
## energy                                                                                                                     11
## reducing                                                                                                                   11
## words                                                                                                                      11
## –                                                                                                                          11
## can                                                                                                                        10
## strategies                                                                                                                 10
## global                                                                                                                     10
## increased                                                                                                                  10
## agriculture                                                                                                                10
## natural                                                                                                                    10
## need                                                                                                                       10
## skills                                                                                                                     10
## recommendation                                                                                                             10
## food                                                                                                                       10
## supporting                                                                                                                 10
## changes                                                                                                                    10
## challenge                                                                                                                  10
## forests                                                                                                                     9
## communities                                                                                                                 9
## adaptation                                                                                                                  9
## clean                                                                                                                       9
## technology                                                                                                                  9
## benefits                                                                                                                    9
## provide                                                                                                                     9
## events                                                                                                                      9
## different                                                                                                                   8
## people                                                                                                                      8
## political                                                                                                                   8
## ipcc                                                                                                                        8
## growth                                                                                                                      8
## region                                                                                                                      8
## interior                                                                                                                    8
## buildings                                                                                                                   8
## oil                                                                                                                         8
## transportation                                                                                                              8
## protecting                                                                                                                  8
## training                                                                                                                    8
## agreement                                                                                                                   8
## integrity                                                                                                                   8
## well                                                                                                                        8
## section                                                                                                                     8
## extreme                                                                                                                     8
## air                                                                                                                         8
## environmental                                                                                                               8
## needs                                                                                                                       8
## support                                                                                                                     7
## ocean                                                                                                                       7
## biodiversity                                                                                                                7
## include                                                                                                                     7
## increasing                                                                                                                  7
## first                                                                                                                       7
## urgent                                                                                                                      7
## commitments                                                                                                                 7
## capacity                                                                                                                    7
## security                                                                                                                    7
## ecological                                                                                                                  7
## lowcarbon                                                                                                                   7
## atmospheric                                                                                                                 7
## services                                                                                                                    7
## analysis                                                                                                                    6
## report                                                                                                                      6
## cleanbc                                                                                                                     6
## ndc                                                                                                                         6
## mountains                                                                                                                   6
## regional                                                                                                                    6
## groups                                                                                                                      6
## north                                                                                                                       6
## potential                                                                                                                   6
## coastal                                                                                                                     6
## adapt                                                                                                                       6
## commitment                                                                                                                  6
## past                                                                                                                        6
## since                                                                                                                       6
## climates                                                                                                                    6
## find                                                                                                                        6
## levels                                                                                                                      6
## °c                                                                                                                          6
## temperatures                                                                                                                6
## years                                                                                                                       6
## ensuring                                                                                                                    6
## equity                                                                                                                      6
## precipitation                                                                                                               6
## summary                                                                                                                     6
## systems                                                                                                                     6
## century                                                                                                                     6
## incorporate                                                                                                                 6
## solutions                                                                                                                   6
## water                                                                                                                       6
## ensure                                                                                                                      6
## important                                                                                                                   5
## accord                                                                                                                      5
## address                                                                                                                     5
## canada                                                                                                                      5
## impacts                                                                                                                     5
## international                                                                                                               5
## warming                                                                                                                     5
## pacific                                                                                                                     5
## province                                                                                                                    5
## south                                                                                                                       5
## health                                                                                                                      5
## population                                                                                                                  5
## result                                                                                                                      5
## though                                                                                                                      5
## within                                                                                                                      5
## forestry                                                                                                                    5
## key                                                                                                                         5
## sectors                                                                                                                     5
## actions                                                                                                                     5
## continue                                                                                                                    5
## local                                                                                                                       5
## based                                                                                                                       5
## flooding                                                                                                                    5
## canadian                                                                                                                    5
## goals                                                                                                                       5
## time                                                                                                                        5
## jobs                                                                                                                        5
## economy                                                                                                                     5
## forest                                                                                                                      5
## fulfill                                                                                                                     5
## reduction                                                                                                                   5
## innovative                                                                                                                  5
## mitigate                                                                                                                    5
## policy                                                                                                                      5
## trees                                                                                                                       5
## become                                                                                                                      5
## work                                                                                                                        5
## make                                                                                                                        5
## communication                                                                                                               5
## copied                                                                                                                      5
## edited                                                                                                                      5
## managing                                                                                                                    5
## still                                                                                                                       5
## part                                                                                                                        4
## contribute                                                                                                                  4
## live                                                                                                                        4
## respond                                                                                                                     4
## accelerated                                                                                                                 4
## plan                                                                                                                        4
## area                                                                                                                        4
## mountain                                                                                                                    4
## northern                                                                                                                    4
## total                                                                                                                       4
## creating                                                                                                                    4
## districts                                                                                                                   4
## high                                                                                                                        4
## use                                                                                                                         4
## increase                                                                                                                    4
## less                                                                                                                        4
## may                                                                                                                         4
## projected                                                                                                                   4
## workers                                                                                                                     4
## central                                                                                                                     4
## experienced                                                                                                                 4
## coast                                                                                                                       4
## gdp                                                                                                                         4
## government                                                                                                                  4
## recent                                                                                                                      4
## financial                                                                                                                   4
## recovery                                                                                                                    4
## wildfire                                                                                                                    4
## balance                                                                                                                     4
## healthy                                                                                                                     4
## rise                                                                                                                        4
## effects                                                                                                                     4
## knowledge                                                                                                                   4
## resilience                                                                                                                  4
## traditional                                                                                                                 4
## competitive                                                                                                                 4
## emission                                                                                                                    4
## encourage                                                                                                                   4
## fuel                                                                                                                        4
## tax                                                                                                                         4
## costs                                                                                                                       4
## sector                                                                                                                      4
## workforce                                                                                                                   4
## becoming                                                                                                                    4
## patterns                                                                                                                    4
## period                                                                                                                      4
## summer                                                                                                                      4
## winter                                                                                                                      4
## cold                                                                                                                        4
## warm                                                                                                                        4
## wetter                                                                                                                      4
## fires                                                                                                                       4
## observed                                                                                                                    4
## look                                                                                                                        4
## lecture                                                                                                                     4
##                                                                                                                            4
## methane                                                                                                                     4
## offer                                                                                                                       4
## build                                                                                                                       4
## rebuilding                                                                                                                  4
## way                                                                                                                         4
## intro                                                                                                                       4
## background                                                                                                                  3
## developing                                                                                                                  3
## geographic                                                                                                                  3
## includes                                                                                                                    3
## industries                                                                                                                  3
## information                                                                                                                 3
## used                                                                                                                        3
## created                                                                                                                     3
## dioxide                                                                                                                     3
## earth’s                                                                                                                     3
## issues                                                                                                                      3
## obligations                                                                                                                 3
## roadmap                                                                                                                     3
## crown                                                                                                                       3
## east                                                                                                                        3
## hectares                                                                                                                    3
## million                                                                                                                     3
## ranges                                                                                                                      3
## western                                                                                                                     3
## biogeoclimatic                                                                                                              3
## manage                                                                                                                      3
## vegetation                                                                                                                  3
## demographics                                                                                                                3
## areas                                                                                                                       3
## territories                                                                                                                 3
## dry                                                                                                                         3
## geography                                                                                                                   3
## construction                                                                                                                3
## logging                                                                                                                     3
## prior                                                                                                                       3
## rights                                                                                                                      3
## cpas                                                                                                                        3
## following                                                                                                                   3
## infrastructure                                                                                                              3
## nations                                                                                                                     3
## next                                                                                                                        3
## plans                                                                                                                       3
## policies                                                                                                                    3
## targets                                                                                                                     3
## affordable                                                                                                                  3
## innovation                                                                                                                  3
## keep                                                                                                                        3
## limit                                                                                                                       3
## made                                                                                                                        3
## preindustrial                                                                                                               3
## production                                                                                                                  3
## sustainable                                                                                                                 3
## every                                                                                                                       3
## reduced                                                                                                                     3
## education                                                                                                                   3
## encouraging                                                                                                                 3
## equitable                                                                                                                   3
## experience                                                                                                                  3
## incorporating                                                                                                               3
## learning                                                                                                                    3
## taken                                                                                                                       3
## creation                                                                                                                    3
## goal                                                                                                                        3
## homes                                                                                                                       3
## increasingly                                                                                                                3
## per                                                                                                                         3
## pollution                                                                                                                   3
## beyond                                                                                                                      3
## community                                                                                                                   3
## create                                                                                                                      3
## ecosystem                                                                                                                   3
## helping                                                                                                                     3
## strategy                                                                                                                    3
## technologies                                                                                                                3
## fund                                                                                                                        3
## projects                                                                                                                    3
## research                                                                                                                    3
## incentives                                                                                                                  3
## large                                                                                                                       3
## heat                                                                                                                        3
## continues                                                                                                                   3
## present                                                                                                                     3
## variations                                                                                                                  3
## averages                                                                                                                    3
## duration                                                                                                                    3
## wind                                                                                                                        3
## associated                                                                                                                  3
## atmosphere                                                                                                                  3
## circulation                                                                                                                 3
## flow                                                                                                                        3
## good                                                                                                                        3
## long                                                                                                                        3
## season                                                                                                                      3
## agricultural                                                                                                                3
## drought                                                                                                                     3
## emergency                                                                                                                   3
## november                                                                                                                    3
## resulting                                                                                                                   3
## locations                                                                                                                   3
## record                                                                                                                      3
## recorded                                                                                                                    3
## average                                                                                                                     3
## current                                                                                                                     3
## environment                                                                                                                 3
## trends                                                                                                                      3
## summarize                                                                                                                   3
## check                                                                                                                       3
## oscillation                                                                                                                 3
## effect                                                                                                                      3
## ability                                                                                                                     3
## species                                                                                                                     3
## landuse                                                                                                                     3
## already                                                                                                                     3
## developed                                                                                                                   3
## creative                                                                                                                    3
## affect                                                                                                                      3
## nature’s                                                                                                                    3
## addressing                                                                                                                  3
## growing                                                                                                                     3
## transition                                                                                                                  3
## instead                                                                                                                     3
## ways                                                                                                                        3
## codes                                                                                                                       3
## quality                                                                                                                     3
## plant                                                                                                                       3
## led                                                                                                                         3
## introduction                                                                                                                2
## brief                                                                                                                       2
## description                                                                                                                 2
## economically                                                                                                                2
## offers                                                                                                                      2
## due                                                                                                                         2
## especially                                                                                                                  2
## intergovernmental                                                                                                           2
## panel                                                                                                                       2
## pathways                                                                                                                    2
## required                                                                                                                    2
## border                                                                                                                      2
## rocky                                                                                                                       2
## authorities                                                                                                                 2
## census                                                                                                                      2
## ecosystems                                                                                                                  2
## geopolitical                                                                                                                2
## macroclimate                                                                                                                2
## municipalities                                                                                                              2
## school                                                                                                                      2
## subdivisions                                                                                                                2
## zones                                                                                                                       2
## ages                                                                                                                        2
## depending                                                                                                                   2
## fewer                                                                                                                       2
## migration                                                                                                                   2
## senior                                                                                                                      2
## cities                                                                                                                      2
## mostly                                                                                                                      2
## nation                                                                                                                      2
## rural                                                                                                                       2
## towns                                                                                                                       2
## villages                                                                                                                    2
## cariboo                                                                                                                     2
## mining                                                                                                                      2
## plateau                                                                                                                     2
## private                                                                                                                     2
## remote                                                                                                                      2
## specific                                                                                                                    2
## tourism                                                                                                                     2
## contributes                                                                                                                 2
## consent                                                                                                                     2
## examples                                                                                                                    2
## forward                                                                                                                     2
## free                                                                                                                        2
## informed                                                                                                                    2
## much                                                                                                                        2
## oldgrowth                                                                                                                   2
## subsidies                                                                                                                   2
## territory                                                                                                                   2
## unceded                                                                                                                     2
## accomplishments                                                                                                             2
## agreements                                                                                                                  2
## backdrop                                                                                                                    2
## budget                                                                                                                      2
## election                                                                                                                    2
## federal                                                                                                                     2
## liberal                                                                                                                     2
## majority                                                                                                                    2
## making                                                                                                                      2
## management                                                                                                                  2
## minority                                                                                                                    2
## responsibilities                                                                                                            2
## reviewing                                                                                                                   2
## speech                                                                                                                      2
## throne                                                                                                                      2
## equality                                                                                                                    2
## netzero                                                                                                                     2
## ppm                                                                                                                         2
## states                                                                                                                      2
## contributions                                                                                                               2
## c°                                                                                                                          2
## determined                                                                                                                  2
## nationally                                                                                                                  2
## rising                                                                                                                      2
## ambitious                                                                                                                   2
## balancing                                                                                                                   2
## considering                                                                                                                 2
## effective                                                                                                                   2
## monitoring                                                                                                                  2
## participation                                                                                                               2
## public                                                                                                                      2
## rapidly                                                                                                                     2
## risks                                                                                                                       2
## scientific                                                                                                                  2
## technological                                                                                                               2
## vulnerable                                                                                                                  2
## adapting                                                                                                                    2
## advantage                                                                                                                   2
## job                                                                                                                         2
## pricing                                                                                                                     2
## waste                                                                                                                       2
## economics                                                                                                                   2
## low                                                                                                                         2
## negative                                                                                                                    2
## partnerships                                                                                                                2
## consumer                                                                                                                    2
## fossil                                                                                                                      2
## introduced                                                                                                                  2
## lower                                                                                                                       2
## revenue                                                                                                                     2
## efficient                                                                                                                   2
## electric                                                                                                                    2
## existing                                                                                                                    2
## old                                                                                                                         2
## retrofitting                                                                                                                2
## direct                                                                                                                      2
## obvious                                                                                                                     2
## quest                                                                                                                       2
## take                                                                                                                        2
## towards                                                                                                                     2
## factors                                                                                                                     2
## many                                                                                                                        2
## clouds                                                                                                                      2
## conditions                                                                                                                  2
## daily                                                                                                                       2
## direction                                                                                                                   2
## extremes                                                                                                                    2
## intensity                                                                                                                   2
## like                                                                                                                        2
## normal                                                                                                                      2
## place                                                                                                                       2
## pressure                                                                                                                    2
## cycle                                                                                                                       2
## highpressure                                                                                                                2
## influence                                                                                                                   2
## influenced                                                                                                                  2
## largescale                                                                                                                  2
## maritime                                                                                                                    2
## niño                                                                                                                        2
## small                                                                                                                       2
## continental                                                                                                                 2
## latitude                                                                                                                    2
## moderate                                                                                                                    2
## plains                                                                                                                      2
## plateaus                                                                                                                    2
## southern                                                                                                                    2
## varies                                                                                                                      2
## activity                                                                                                                    2
## arctic                                                                                                                      2
## early                                                                                                                       2
## largest                                                                                                                     2
## snow                                                                                                                        2
## burning                                                                                                                     2
## day                                                                                                                         2
## fertile                                                                                                                     2
## fire                                                                                                                        2
## frequency                                                                                                                   2
## human                                                                                                                       2
## impact                                                                                                                      2
## one                                                                                                                         2
## prairie                                                                                                                     2
## rain                                                                                                                        2
## river                                                                                                                       2
## state                                                                                                                       2
## sumas                                                                                                                       2
## values                                                                                                                      2
## december                                                                                                                    2
## httpswwwgovbccaassetsgovenvironmentnaturalresourcestewardshipnrsclimatechangeappliedscienceavabcclimatechangefinalaugpdf    2
## variability                                                                                                                 2
## drier                                                                                                                       2
## last                                                                                                                        2
## systemic                                                                                                                    2
## maps                                                                                                                        2
## material                                                                                                                    2
## expectations                                                                                                                2
## module                                                                                                                      2
## notes                                                                                                                       2
## slide                                                                                                                       2
## longterm                                                                                                                    2
## oceans                                                                                                                      2
## stabilize                                                                                                                   2
## acidic                                                                                                                      2
## habitat                                                                                                                     2
## adaptive                                                                                                                    2
## vulnerabilities                                                                                                             2
## pages                                                                                                                       2
## necessary                                                                                                                   2
## themes                                                                                                                      2
## wetlands                                                                                                                    2
## across                                                                                                                      2
## often                                                                                                                       2
## populations                                                                                                                 2
## representative                                                                                                              2
## ministry                                                                                                                    2
## reconciliation                                                                                                              2
## sources                                                                                                                     2
## youth                                                                                                                       2
## cleanenergy                                                                                                                 2
## employment                                                                                                                  2
## force                                                                                                                       2
## remove                                                                                                                      2
## resource                                                                                                                    2
## soil                                                                                                                        2
## storage                                                                                                                     2
## store                                                                                                                       2
## timber                                                                                                                      2
## farms                                                                                                                       2
## flooded                                                                                                                     2
## fraser                                                                                                                      2
## legislation                                                                                                                 2
## manure                                                                                                                      2
## valley                                                                                                                      2
## flood                                                                                                                       2
## preserve                                                                                                                    2
## resources                                                                                                                   2
## bold                                                                                                                        2
## exists                                                                                                                      2
## invest                                                                                                                      2
## competing                                                                                                                   2
## advice                                                                                                                      2
## meet                                                                                                                        2
## track                                                                                                                       2
## causing                                                                                                                     2
## damage                                                                                                                      2
## protests                                                                                                                    2
## affordability                                                                                                               2
## consider                                                                                                                    2
## council                                                                                                                     2
## chiefs                                                                                                                      2
## continued                                                                                                                   2
## ongoing                                                                                                                     2
## without                                                                                                                     2
## rebuild                                                                                                                     2
## using                                                                                                                       2
## list                                                                                                                        2
## foster                                                                                                                      2
## …                                                                                                                           2
## needed                                                                                                                      2
## conclusion                                                                                                                  2
## cabinet                                                                                                                     1
## confidential                                                                                                                1
## considerations                                                                                                              1
## discussion                                                                                                                  1
## tool                                                                                                                        1
## vastly                                                                                                                      1
## activities                                                                                                                  1
## cause                                                                                                                       1
## cooperation                                                                                                                 1
## greenhouse                                                                                                                  1
## humanrelated                                                                                                                1
## lessen                                                                                                                      1
## national                                                                                                                    1
## outlined                                                                                                                    1
## reported                                                                                                                    1
## signed                                                                                                                      1
## surface                                                                                                                     1
## alberta                                                                                                                     1
## boreal                                                                                                                      1
## coastline                                                                                                                   1
## rugged                                                                                                                      1
## stretching                                                                                                                  1
## usa                                                                                                                         1
## categories                                                                                                                  1
## distinct                                                                                                                    1
## divided                                                                                                                     1
## divisions                                                                                                                   1
## numerous                                                                                                                    1
## phsyiographic                                                                                                               1
## plus                                                                                                                        1
## similar                                                                                                                     1
## subareas                                                                                                                    1
## useful                                                                                                                      1
## variety                                                                                                                     1
## aging                                                                                                                       1
## births                                                                                                                      1
## deaths                                                                                                                      1
## decrease                                                                                                                    1
## interprovincial                                                                                                             1
## now                                                                                                                         1
## passed                                                                                                                      1
## populace                                                                                                                    1
## retire                                                                                                                      1
## shows                                                                                                                       1
## slightly                                                                                                                    1
## stats                                                                                                                       1
## working                                                                                                                     1
## age                                                                                                                         1
## comprise                                                                                                                    1
## least                                                                                                                       1
## okanagan                                                                                                                    1
## reserves                                                                                                                    1
## urban                                                                                                                       1
## younger                                                                                                                     1
## cover                                                                                                                       1
## culture                                                                                                                     1
## drivers                                                                                                                     1
## iii                                                                                                                         1
## island                                                                                                                      1
## kootenay                                                                                                                    1
## mainland                                                                                                                    1
## nechako                                                                                                                     1
## northeast                                                                                                                   1
## occur                                                                                                                       1
## occurs                                                                                                                      1
## pipelines                                                                                                                   1
## southwest                                                                                                                   1
## thompsonokanagan                                                                                                            1
## utilities                                                                                                                   1
## vancouver                                                                                                                   1
## decreasing                                                                                                                  1
## domestic                                                                                                                    1
## emitting                                                                                                                    1
## gross                                                                                                                       1
## hydro                                                                                                                       1
## manufacturing                                                                                                               1
## megatons                                                                                                                    1
## product                                                                                                                     1
## service                                                                                                                     1
## acceptance                                                                                                                  1
## access                                                                                                                      1
## authority                                                                                                                   1
## citizens                                                                                                                    1
## creek                                                                                                                       1
## decisionmaking                                                                                                              1
## exercise                                                                                                                    1
## expected                                                                                                                    1
## fairy                                                                                                                       1
## gaslink                                                                                                                     1
## going                                                                                                                       1
## landscape                                                                                                                   1
## pipeline                                                                                                                    1
## protest                                                                                                                     1
## protocol                                                                                                                    1
## right                                                                                                                       1
## undrip                                                                                                                      1
## wet’suwet’en                                                                                                                1
## collaborating                                                                                                               1
## crisis”                                                                                                                     1
## focusing                                                                                                                    1
## followed                                                                                                                    1
## formed                                                                                                                      1
## furthering                                                                                                                  1
## highlighted                                                                                                                 1
## investing                                                                                                                   1
## money                                                                                                                       1
## ndp                                                                                                                         1
## prepare                                                                                                                     1
## prevention                                                                                                                  1
## resilient                                                                                                                   1
## set                                                                                                                         1
## setting                                                                                                                     1
## wildfires                                                                                                                   1
## “climate                                                                                                                    1
## affecting                                                                                                                   1
## affirms                                                                                                                     1
## assessment                                                                                                                  1
## call                                                                                                                        1
## consumption                                                                                                                 1
## currently                                                                                                                   1
## drives                                                                                                                      1
## exceed                                                                                                                      1
## experts                                                                                                                     1
## fall                                                                                                                        1
## life                                                                                                                        1
## likely                                                                                                                      1
## newest                                                                                                                      1
## reductions”                                                                                                                 1
## responsible                                                                                                                 1
## special                                                                                                                     1
## sustainability                                                                                                              1
## understanding                                                                                                               1
## unless                                                                                                                      1
## update                                                                                                                      1
## written                                                                                                                     1
## “deep                                                                                                                       1
## agreed                                                                                                                      1
## binding                                                                                                                     1
## detailed                                                                                                                    1
## legally                                                                                                                     1
## motivated                                                                                                                   1
## preferably                                                                                                                  1
## ratified                                                                                                                    1
## sovereign                                                                                                                   1
## submit                                                                                                                      1
## treaty                                                                                                                      1
## available                                                                                                                   1
## aware                                                                                                                       1
## best                                                                                                                        1
## diversifying                                                                                                                1
## economies                                                                                                                   1
## efforts                                                                                                                     1
## enacting                                                                                                                    1
## evaluating                                                                                                                  1
## financing                                                                                                                   1
## guided                                                                                                                      1
## knowledge“                                                                                                                  1
## mobilizing                                                                                                                  1
## planning                                                                                                                    1
## programs                                                                                                                    1
## responses                                                                                                                   1
## transparent                                                                                                                 1
## unfcc                                                                                                                       1
## vision“                                                                                                                     1
## “                                                                                                                           1
## “longterm                                                                                                                   1
## cutting                                                                                                                     1
## enhanced                                                                                                                    1
## families                                                                                                                    1
## habitats                                                                                                                    1
## household                                                                                                                   1
## innovating                                                                                                                  1
## original                                                                                                                    1
## outlining                                                                                                                   1
## rebates                                                                                                                     1
## respecting                                                                                                                  1
## submitted                                                                                                                   1
## bioeconomy                                                                                                                  1
## climatechange                                                                                                               1
## collecting                                                                                                                  1
## cultivated                                                                                                                  1
## data                                                                                                                        1
## extend                                                                                                                      1
## fisheries                                                                                                                   1
## globally                                                                                                                    1
## map                                                                                                                         1
## preparedness                                                                                                                1
## purposes                                                                                                                    1
## ready                                                                                                                       1
## released                                                                                                                    1
## road                                                                                                                        1
## targeted                                                                                                                    1
## accelerator                                                                                                                 1
## allow                                                                                                                       1
## capped                                                                                                                      1
## cumulatively                                                                                                                1
## offered                                                                                                                     1
## proposals                                                                                                                   1
## reviewed                                                                                                                    1
## america                                                                                                                     1
## applied                                                                                                                     1
## canadians                                                                                                                   1
## credit                                                                                                                      1
## fueltype                                                                                                                    1
## kind                                                                                                                        1
## metric                                                                                                                      1
## middleincome                                                                                                                1
## purchase                                                                                                                    1
## rebated                                                                                                                     1
## solution                                                                                                                    1
## starting                                                                                                                    1
## taxes                                                                                                                       1
## ton                                                                                                                         1
## charging                                                                                                                    1
## deferring                                                                                                                   1
## electrifying                                                                                                                1
## expanding                                                                                                                   1
## installations                                                                                                               1
## passenger                                                                                                                   1
## previously                                                                                                                  1
## promises                                                                                                                    1
## promoting                                                                                                                   1
## pump                                                                                                                        1
## subsidizing                                                                                                                 1
## vehicles                                                                                                                    1
## world                                                                                                                       1
## zeroemission                                                                                                                1
## competitively                                                                                                               1
## final                                                                                                                       1
## leader                                                                                                                      1
## move                                                                                                                        1
## sections                                                                                                                    1
## rest                                                                                                                        1
## “inform                                                                                                                     1
## ”                                                                                                                           1
## analyzing                                                                                                                   1
## impacted                                                                                                                    1
## inform                                                                                                                      1
## understand                                                                                                                  1
## barometric                                                                                                                  1
## common                                                                                                                      1
## difference                                                                                                                  1
## distinguishing                                                                                                              1
## hourly                                                                                                                      1
## influences                                                                                                                  1
## recognize                                                                                                                   1
## seasonally                                                                                                                  1
## speed                                                                                                                       1
## start                                                                                                                       1
## statistical                                                                                                                 1
## variabilities                                                                                                               1
## vary                                                                                                                        1
## alternating                                                                                                                 1
## canada‘s                                                                                                                    1
## climatic                                                                                                                    1
## frostfree                                                                                                                   1
## lots                                                                                                                        1
## lowpressure                                                                                                                 1
## moderating                                                                                                                  1
## multiyear                                                                                                                   1
## periods                                                                                                                     1
## prevailing                                                                                                                  1
## rainfall                                                                                                                    1
## seasonal                                                                                                                    1
## warmest                                                                                                                     1
## west                                                                                                                        1
## winds                                                                                                                       1
## basins                                                                                                                      1
## block                                                                                                                       1
## columbia                                                                                                                    1
## coming                                                                                                                      1
## distance                                                                                                                    1
## distribute                                                                                                                  1
## eastern                                                                                                                     1
## elevation                                                                                                                   1
## exposure                                                                                                                    1
## gradient                                                                                                                    1
## great                                                                                                                       1
## islands                                                                                                                     1
## marine                                                                                                                      1
## masses                                                                                                                      1
## mild                                                                                                                        1
## northsouth                                                                                                                  1
## parallel                                                                                                                    1
## prairies                                                                                                                    1
## separated                                                                                                                   1
## afternoons                                                                                                                  1
## brings                                                                                                                      1
## driest                                                                                                                      1
## dryer                                                                                                                       1
## elevations                                                                                                                  1
## experiences                                                                                                                 1
## generating                                                                                                                  1
## higher                                                                                                                      1
## rainshadow                                                                                                                  1
## range                                                                                                                       1
## side                                                                                                                        1
## slopes                                                                                                                      1
## southcentral                                                                                                                1
## spring                                                                                                                      1
## thunderstorm                                                                                                                1
## valleybottoms                                                                                                               1
## valleys                                                                                                                     1
## westerly                                                                                                                    1
## wet                                                                                                                         1
## days                                                                                                                        1
## declared                                                                                                                    1
## dramatic                                                                                                                    1
## history                                                                                                                     1
## lives                                                                                                                       1
## longest                                                                                                                     1
## recordbreaking                                                                                                              1
## waves                                                                                                                       1
## wild                                                                                                                        1
## worst                                                                                                                       1
## floods                                                                                                                      1
## george                                                                                                                      1
## harbour                                                                                                                     1
## hot                                                                                                                         1
## june                                                                                                                        1
## lytton                                                                                                                      1
## prince                                                                                                                      1
## third                                                                                                                       1
## victoria                                                                                                                    1
## anything                                                                                                                    1
## etal                                                                                                                        1
## glaciers                                                                                                                    1
## mention                                                                                                                     1
## moisture                                                                                                                    1
## page                                                                                                                        1
## spittlehouse                                                                                                                1
## normals                                                                                                                     1
## compared                                                                                                                    1
## norm                                                                                                                        1
## year                                                                                                                        1
## max                                                                                                                         1
## min                                                                                                                         1
## norms                                                                                                                       1
## precip                                                                                                                      1
## temp                                                                                                                        1
## differ                                                                                                                      1
## mean                                                                                                                        1
## planetary                                                                                                                   1
## leading                                                                                                                     1
## jurisdiction                                                                                                                1
## actuaries                                                                                                                   1
## index                                                                                                                       1
## asterix                                                                                                                     1
## httpswwwpacificclimateorgdatastatisticallydownscaledclimatescenarios                                                        1
## httpsdatapacificclimateorgportaldownscaledgcmsmap                                                                           1
## strength                                                                                                                    1
## forecast                                                                                                                    1
## modeled                                                                                                                     1
## prediction                                                                                                                  1
## projection                                                                                                                  1
## see                                                                                                                         1
## httpstwittercomthomasforbcstatuss                                                                                           1
## amount                                                                                                                      1
## drying                                                                                                                      1
## melt                                                                                                                        1
## persistence                                                                                                                 1
## snowpack                                                                                                                    1
## get                                                                                                                         1
## hotter                                                                                                                      1
## summers                                                                                                                     1
## trend                                                                                                                       1
## months                                                                                                                      1
## decadal                                                                                                                     1
## american                                                                                                                    1
## lifetime                                                                                                                    1
## pattern                                                                                                                     1
## amplified                                                                                                                   1
## coincided                                                                                                                   1
## cycles                                                                                                                      1
## series                                                                                                                      1
## imbalance                                                                                                                   1
## increases                                                                                                                   1
## keeping                                                                                                                     1
## relative                                                                                                                    1
## transfer                                                                                                                    1
## •                                                                                                                           1
## affects                                                                                                                     1
## heating                                                                                                                     1
## slowly                                                                                                                      1
## cumulative                                                                                                                  1
## deforestation                                                                                                               1
## esp                                                                                                                         1
## march                                                                                                                       1
## nitrous                                                                                                                     1
## oxide                                                                                                                       1
## httpsbritishcolumbiacombcweatherbc                                                                                          1
## httpspicsuviccaresearchclimatehealthcovidbritishcolumbia                                                                    1
## httpsopentextbccageographychapterclimateenvironmentbc                                                                       1
## httpsclimatechangecanadacabritishcolumbia                                                                                   1
## httpswwwnrcangccachangementsclimatiquesimpactsadaptationintroductionbritishcolumbia                                         1
## guiding                                                                                                                     1
## makers                                                                                                                      1
## presented                                                                                                                   1
## scientists                                                                                                                  1
## considers                                                                                                                   1
## bc’                                                                                                                         1
## depends                                                                                                                     1
## grasslands                                                                                                                  1
## healthier                                                                                                                   1
## matter                                                                                                                      1
## nature                                                                                                                      1
## particulate                                                                                                                 1
## retention                                                                                                                   1
## shrubs                                                                                                                      1
## stored                                                                                                                      1
## zone                                                                                                                        1
## ‘beautiful                                                                                                                  1
## accessible                                                                                                                  1
## distributed                                                                                                                 1
## excluded                                                                                                                    1
## inclusive                                                                                                                   1
## inequality                                                                                                                  1
## multiple                                                                                                                    1
## reductions                                                                                                                  1
## spreading                                                                                                                   1
## thus                                                                                                                        1
## consultation                                                                                                                1
## diesel                                                                                                                      1
## generators                                                                                                                  1
## relations                                                                                                                   1
## reliance                                                                                                                    1
## develop                                                                                                                     1
## environments                                                                                                                1
## explore                                                                                                                     1
## inspired                                                                                                                    1
## lowemission                                                                                                                 1
## researchers                                                                                                                 1
## revitalized                                                                                                                 1
## skilled                                                                                                                     1
## smooth                                                                                                                      1
## student                                                                                                                     1
## chance                                                                                                                      1
## cycling                                                                                                                     1
## diversification                                                                                                             1
## managed                                                                                                                     1
## newly                                                                                                                       1
## nutrient                                                                                                                    1
## preservation                                                                                                                1
## purification                                                                                                                1
## recreation                                                                                                                  1
## rethink                                                                                                                     1
## spirituality                                                                                                                1
## stewardship                                                                                                                 1
## tissue                                                                                                                      1
## wildlife                                                                                                                    1
## woody                                                                                                                       1
## abound                                                                                                                      1
## contribution                                                                                                                1
## ensures                                                                                                                     1
## farming                                                                                                                     1
## importing                                                                                                                   1
## preserving                                                                                                                  1
## ranching                                                                                                                    1
## rebuilt                                                                                                                     1
## recently                                                                                                                    1
## reduces                                                                                                                     1
## reserve                                                                                                                     1
## destructive                                                                                                                 1
## environmentally                                                                                                             1
## preparing                                                                                                                   1
## reconstruct                                                                                                                 1
## thrive                                                                                                                      1
## zoning                                                                                                                      1
## cite                                                                                                                        1
## cleaning                                                                                                                    1
## covid                                                                                                                       1
## greatly                                                                                                                     1
## lockdown                                                                                                                    1
## looking                                                                                                                     1
## markets                                                                                                                     1
## pays                                                                                                                        1
## polluter                                                                                                                    1
## principle                                                                                                                   1
## providing                                                                                                                   1
## reassessing                                                                                                                 1
## reevaluate                                                                                                                  1
## something                                                                                                                   1
## try                                                                                                                         1
## interests                                                                                                                   1
## involves                                                                                                                    1
## myriad                                                                                                                      1
## detractors                                                                                                                  1
## measure                                                                                                                     1
## supporters                                                                                                                  1
## highlight                                                                                                                   1
## might                                                                                                                       1
## mitigated                                                                                                                   1
## overcome                                                                                                                    1
## ided                                                                                                                        1
## discuss                                                                                                                     1
## displaced                                                                                                                   1
## communicate                                                                                                                 1
## inspire                                                                                                                     1
## accepting                                                                                                                   1
## comes                                                                                                                       1
## continuing                                                                                                                  1
## directions                                                                                                                  1
## emit                                                                                                                        1
## expensive                                                                                                                   1
## inherent                                                                                                                    1
## paths                                                                                                                       1
## problem                                                                                                                     1
## relying                                                                                                                     1
## researching                                                                                                                 1
## simply                                                                                                                      1
## source                                                                                                                      1
## suggest                                                                                                                     1
## timelines                                                                                                                   1
## unproven                                                                                                                    1
## concerns                                                                                                                    1
## give                                                                                                                        1
## legitimate                                                                                                                  1
## oceans”                                                                                                                     1
## places                                                                                                                      1
## protect                                                                                                                     1
## raised                                                                                                                      1
## shellfish                                                                                                                   1
## shells                                                                                                                      1
## shortterm                                                                                                                   1
## “irreversible                                                                                                               1
## advisory                                                                                                                    1
## advocating                                                                                                                  1
## businesses                                                                                                                  1
## consumers                                                                                                                   1
## disabled                                                                                                                    1
## individual                                                                                                                  1
## member                                                                                                                      1
## missing                                                                                                                     1
## organizations                                                                                                               1
## poverty                                                                                                                     1
## seeking                                                                                                                     1
## accepted                                                                                                                    1
## declaration                                                                                                                 1
## departments                                                                                                                 1
## drip                                                                                                                        1
## engagement                                                                                                                  1
## forms                                                                                                                       1
## governance                                                                                                                  1
## hereditary                                                                                                                  1
## indian                                                                                                                      1
## lands                                                                                                                       1
## peoples                                                                                                                     1
## personnel                                                                                                                   1
## protocols                                                                                                                   1
## reservation                                                                                                                 1
## situated                                                                                                                    1
## territorial                                                                                                                 1
## treaties                                                                                                                    1
## decline                                                                                                                     1
## except                                                                                                                      1
## expansion                                                                                                                   1
## general                                                                                                                     1
## greenenergy                                                                                                                 1
## retirements                                                                                                                 1
## socioeconomic                                                                                                               1
## absorption                                                                                                                  1
## ecoservices                                                                                                                 1
## insect                                                                                                                      1
## pause                                                                                                                       1
## stressed                                                                                                                    1
## system                                                                                                                      1
## techniques                                                                                                                  1
## uncertainty                                                                                                                 1
## unsustainable                                                                                                               1
## addressed                                                                                                                   1
## alternate                                                                                                                   1
## became                                                                                                                      1
## grown                                                                                                                       1
## locally                                                                                                                     1
## prone                                                                                                                       1
## remain                                                                                                                      1
## toxins                                                                                                                      1
## adaption                                                                                                                    1
## anew                                                                                                                        1
## considered                                                                                                                  1
## expense                                                                                                                     1
## farm                                                                                                                        1
## income                                                                                                                      1
## infrastructure”                                                                                                             1
## lost                                                                                                                        1
## policies”                                                                                                                   1
## require                                                                                                                     1
## results                                                                                                                     1
## “ambitious                                                                                                                  1
## “systemic                                                                                                                   1
## comparisons                                                                                                                 1
## previous                                                                                                                    1
## conclusions                                                                                                                 1
## summaryconclude                                                                                                             1
## parts                                                                                                                       1
## open                                                                                                                        1
## paragraph                                                                                                                   1
## parti                                                                                                                       1
## along                                                                                                                       1
## demographic                                                                                                                 1
## varying                                                                                                                     1
## actor                                                                                                                       1
## pick                                                                                                                        1
## fulfillment                                                                                                                 1
## identification                                                                                                              1
## issue                                                                                                                       1
## suggested                                                                                                                   1
## actionoriented                                                                                                              1
## inclusion                                                                                                                   1
## practical                                                                                                                   1
## rationales                                                                                                                  1
## term                                                                                                                        1
## think                                                                                                                       1
## underway                                                                                                                    1
## factor                                                                                                                      1
## consideration                                                                                                               1
## number                                                                                                                      1
## order                                                                                                                       1
## posed                                                                                                                       1
## strategic                                                                                                                   1
## avoid                                                                                                                       1
## linealigned                                                                                                                 1
## sake                                                                                                                        1
## sure                                                                                                                        1
## thought                                                                                                                     1
## wise                                                                                                                        1
## appropriate                                                                                                                 1
## estate                                                                                                                      1
## extraction                                                                                                                  1
## real                                                                                                                        1
## restore                                                                                                                     1
## valuable                                                                                                                    1
## assure                                                                                                                      1
## fair                                                                                                                        1
## finance                                                                                                                     1
## industrial                                                                                                                  1
## just                                                                                                                        1
## supportive                                                                                                                  1
## green                                                                                                                       1
## process                                                                                                                     1
## relationships                                                                                                               1
## together                                                                                                                    1
## carbonfree                                                                                                                  1
## design                                                                                                                      1
## engineer                                                                                                                    1
## innovate                                                                                                                    1
## maintain                                                                                                                    1
## produce                                                                                                                     1
## train                                                                                                                       1
## transitioning                                                                                                               1
## young                                                                                                                       1
## capture                                                                                                                     1
## deciduous                                                                                                                   1
## diverse                                                                                                                     1
## effectively                                                                                                                 1
## firebreak                                                                                                                   1
## functions                                                                                                                   1
## mills                                                                                                                       1
## refit                                                                                                                       1
## smaller                                                                                                                     1
## tree                                                                                                                        1
## compliance                                                                                                                  1
## continuation                                                                                                                1
## enforcement                                                                                                                 1
## equipment                                                                                                                   1
## gaspowered                                                                                                                  1
## innovations                                                                                                                 1
## replace                                                                                                                     1
## demolishing                                                                                                                 1
## don’t                                                                                                                       1
## fireresiliency                                                                                                              1
## focus                                                                                                                       1
## restoring                                                                                                                   1
## risk                                                                                                                        1
## safe                                                                                                                        1
## structures                                                                                                                  1
## updating                                                                                                                    1
## exhaustive                                                                                                                  1
## ‘lens’                                                                                                                      1
## sense                                                                                                                       1
## urgency                                                                                                                     1
## ultimate                                                                                                                    1
## initiating                                                                                                                  1
## lead                                                                                                                        1
## market                                                                                                                      1
## initial                                                                                                                     1
## outline                                                                                                                     1
## refer                                                                                                                       1
## difference’                                                                                                                 1
## know                                                                                                                        1
## recognizing                                                                                                                 1
## ‘make                                                                                                                       1
## honour                                                                                                                      1
## reason                                                                                                                      1
## reports                                                                                                                     1
## taking                                                                                                                      1
## british                                                                                                                     1
## business                                                                                                                    1
## columbians                                                                                                                  1
## ensured                                                                                                                     1
## stewarding                                                                                                                  1
## unique                                                                                                                      1
## vibrant                                                                                                                     1
# View(freq_tab)